php-src/ext/standard/tests/strings/strip_tags_variation9.phpt
2009-07-15 13:44:14 +00:00

55 lines
1.6 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--TEST--
Test strip_tags() function : usage variations - double quoted strings
--INI--
short_open_tag = on
--FILE--
<?php
/* Prototype : string strip_tags(string $str [, string $allowable_tags])
* Description: Strips HTML and PHP tags from a string
* Source code: ext/standard/string.c
*/
/*
* testing functionality of strip_tags() by giving double quoted strings as values for $str argument
*/
echo "*** Testing strip_tags() : usage variations ***\n";
$double_quote_string = array (
"<html> \$ -> This represents the dollar sign</html><?php echo hello ?>",
"<html>\t\r\v The quick brown fo\fx jumped over the lazy dog</p>",
"<a>This is a hyper text tag</a>",
"<? <html>hello world\\t</html>?>",
"<p>This is a paragraph</p>",
"<b>This is \ta text in bold letters\r\s\malong with slashes\n</b>"
);
$quotes = "<html><a><p><b><?php";
//loop through the various elements of strings array to test strip_tags() functionality
$iterator = 1;
foreach($double_quote_string as $string_value)
{
echo "-- Iteration $iterator --\n";
var_dump( strip_tags($string_value, $quotes) );
$iterator++;
}
echo "Done";
--EXPECTF--
*** Testing strip_tags() : usage variations ***
-- Iteration 1 --
string(50) "<html> $ -> This represents the dollar sign</html>"
-- Iteration 2 --
string(59) "<html>
The quick brown fo x jumped over the lazy dog</p>"
-- Iteration 3 --
string(31) "<a>This is a hyper text tag</a>"
-- Iteration 4 --
string(0) ""
-- Iteration 5 --
string(26) "<p>This is a paragraph</p>"
-- Iteration 6 --
string(62) "<b>This is a text in bold letters
\s\malong with slashes
</b>"
Done