mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
16 lines
139 B
PHP
16 lines
139 B
PHP
<?
|
|
function blah($a)
|
|
{
|
|
return $a;
|
|
}
|
|
|
|
return "cool";
|
|
|
|
|
|
for ($for=0; $for<=100000;$for++)
|
|
{
|
|
if ("andi" != blah("andi"))
|
|
{
|
|
print "error";}
|
|
}
|