mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
11 lines
119 B
PHP
11 lines
119 B
PHP
--TEST--
|
|
Testing eval function
|
|
--FILE--
|
|
<?php
|
|
error_reporting(0);
|
|
$a="echo \"Hello\";";
|
|
eval($a);
|
|
?>
|
|
--EXPECT--
|
|
Hello
|