Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
php
/
recurse.php
blob: 3378bfb88f9608d556639c6398e8b48846af639c [
file
]
<?
php
Function
Test
()
{
static
$a
=
1
;
echo
"$a "
;
$a
++;
if
(
$a
<
10
):
Test
();
endif
;
}
Test()
?>