1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 03:22:58 +02:00
Files
archived-php-src/tests/lang/013.phpt
2018-10-14 19:45:12 +02:00

11 lines
118 B
PHP

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