标签:分享 nbsp pre net count .net class png 技术分享
w
echo time(), ‘<br>‘; function test() { sleep(2); static $count = 0; // echo $count; $count++; echo $count; if ($count < 10) { test(); } echo ‘<br>w-‘, time(), ‘-‘, $count; $count--; } test(); echo ‘<br>‘, time(), ‘<br>‘;
<?php function test() { static $count = 0; $count++; echo $count; if ($count < 10) { test(); } $count--; } test();
标签:分享 nbsp pre net count .net class png 技术分享
原文地址:http://www.cnblogs.com/yuanjiangw/p/6681436.html