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

11 lines
118 B
PHP

--TEST--
Testing eval function
--FILE--
<?php
error_reporting(0);
$a="echo \"Hello\";";
eval($a);
?>
--EXPECT--
Hello