summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/htdocs/php/recurse.php
blob: 3378bfb88f9608d556639c6398e8b48846af639c (plain)
1
2
3
4
5
6
7
8
9
10
<?php  Function Test()
        {
                static $a=1;

                echo "$a ";
                $a++;
                if($a<10): Test(); endif;
        }
        Test()?>