php-src/tests/lang/019.phpt
2001-04-26 19:42:08 +00:00

39 lines
1.0 KiB
PHP

--TEST--
eval() test
--POST--
--GET--
--FILE--
<?php
error_reporting(0);
eval("function test() { echo \"hey, this is a function inside an eval()!\\n\"; }");
$i=0;
while ($i<10) {
eval("echo \"hey, this is a regular echo'd eval()\\n\";");
test();
$i++;
}
--EXPECT--
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!
hey, this is a regular echo'd eval()
hey, this is a function inside an eval()!