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/013.phpt
2002-03-29 17:12:11 +00:00

13 lines
136 B
PHP

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