13 lines
217 B
PHP
13 lines
217 B
PHP
<?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++;
|
|
}
|