summaryrefslogtreecommitdiff
path: root/tests/lang/014.phpt
blob: b2d605c8ea33aa0691b3c0b834e48e83db1f7213 (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