php-src/ext/standard/tests/strings/strip_tags_error.phpt
Marcus Boerger af316021e8 - Rewrite scanner to be based on re2c instead of flex
The full patch is available as:
  http://php.net/~helly/php-re2c-5.3-20080316.diff.txt
  This is against php-re2c repository version 98
  An older patch against version 97 is available under:
  http://php.net/~helly/php-re2c-97-20080316.diff.txt
2008-03-16 21:06:55 +00:00

41 lines
1.1 KiB
PHP

--TEST--
Test strip_tags() function : error conditions
--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
*/
echo "*** Testing strip_tags() : error conditions ***\n";
// Zero arguments
echo "\n-- Testing strip_tags() function with Zero arguments --\n";
var_dump( strip_tags() );
//Test strip_tags with one more than the expected number of arguments
echo "\n-- Testing strip_tags() function with more than expected no. of arguments --\n";
$str = "<html>hello</html>";
$allowable_tags = "<html>";
$extra_arg = 10;
var_dump( strip_tags($str, $allowable_tags, $extra_arg) );
echo "Done";
?>
--EXPECTF--
*** Testing strip_tags() : error conditions ***
-- Testing strip_tags() function with Zero arguments --
Warning: Wrong parameter count for strip_tags() in %s on line %d
NULL
-- Testing strip_tags() function with more than expected no. of arguments --
Warning: Wrong parameter count for strip_tags() in %s on line %d
NULL
Done