php-src/ext/standard/tests/general_functions/get_magic_quotes_gpc.phpt

31 lines
751 B
PHP

--TEST--
Test get_magic_quotes_gpc() function
--FILE--
<?php
/* Prototype: int get_magic_quotes_gpc ( void )
* This function is not supported anymore and will always return false
*/
echo "Simple testcase for get_magic_quotes_gpc() function\n";
var_dump(get_magic_quotes_gpc());
echo "\n-- Error cases --\n";
// no checks on number of args
var_dump(get_magic_quotes_gpc(true));
?>
===DONE===
--EXPECTF--
Simple testcase for get_magic_quotes_gpc() function
Deprecated: Function get_magic_quotes_gpc() is deprecated in %s on line %d
bool(false)
-- Error cases --
Deprecated: Function get_magic_quotes_gpc() is deprecated in %s on line %d
Warning: get_magic_quotes_gpc() expects exactly 0 parameters, 1 given in %s on line %d
NULL
===DONE===