mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
37 lines
240 B
PHP
37 lines
240 B
PHP
--TEST--
|
|
eval() test
|
|
--POST--
|
|
--GET--
|
|
--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
|