summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strip_tags_variation9.phpt
blob: fc4936525d64d64ce9f843dcbf69f99c72442726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--TEST--
Test strip_tags() function : usage variations - double quoted strings
--FILE--
<?php
/*
 * 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";
--EXPECT--
*** 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