1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00
Files
archived-php-src/tests/lang/014.phpt
2018-10-14 12:07:20 -03:00

14 lines
169 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