mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
15 lines
208 B
PHP
15 lines
208 B
PHP
--TEST--
|
|
errmsg: disabled function
|
|
--INI--
|
|
disable_functions=phpinfo
|
|
--FILE--
|
|
<?php
|
|
|
|
phpinfo();
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: phpinfo() has been disabled for security reasons in %s on line %d
|
|
Done
|