php-src/Zend/tests/errmsg_020.phpt

17 lines
214 B
Plaintext
Raw Normal View History

2007-02-07 11:10:32 +00:00
--TEST--
errmsg: disabled function
--INI--
disable_functions=phpinfo
--FILE--
<?php
try {
phpinfo();
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
2007-02-07 11:10:32 +00:00
?>
--EXPECT--
Call to undefined function phpinfo()