mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
35 lines
223 B
PHP
35 lines
223 B
PHP
--TEST--
|
|
eval() test
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(0);
|
|
|
|
$message = "echo \"hey\n\";";
|
|
|
|
for ($i=0; $i<10; $i++) {
|
|
eval($message);
|
|
echo $i."\n";
|
|
}
|
|
--EXPECT--
|
|
hey
|
|
0
|
|
hey
|
|
1
|
|
hey
|
|
2
|
|
hey
|
|
3
|
|
hey
|
|
4
|
|
hey
|
|
5
|
|
hey
|
|
6
|
|
hey
|
|
7
|
|
hey
|
|
8
|
|
hey
|
|
9
|