summaryrefslogtreecommitdiff
path: root/tests/lang/014.phpt
blob: fe6f86e22a377312c8a4e269424f4f363e5c1b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Testing eval function inside user-defined function
--FILE--
<?php
function F ($a) {
	eval($a);
}

error_reporting(0);
F("echo \"Hello\";");
?>
--EXPECT--
Hello