1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/tests/lang/014.phpt
2004-05-19 08:45:46 +00:00

14 lines
171 B
PHP

--TEST--
Testing eval function inside user-defined function
--FILE--
<?php
function F ($a) {
eval($a);
}
error_reporting(0);
F("echo \"Hello\";");
?>
--EXPECT--
Hello