summaryrefslogtreecommitdiff
path: root/tests/lang/013.phpt
blob: c25cf41abedd23aa0fbba1e99f0e4a15caee476f (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Testing eval function
--FILE--
<?php
error_reporting(0);
$a="echo \"Hello\";";
eval($a);
?>
--EXPECT--
Hello