TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
--TEST--
|
|
eval() test
|
|
--FILE--
|
|
<?php
|
|
|
|
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++;
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
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()!
|
|
|