怎么做只被调用一次
本帖最后由 樱花雪月 于 2015-4-18 08:45 编辑重复调用一个或其他的函数,并只能被调用执行一次。
20150418:感谢帮助,没看帖子已用别的办法解决。 func function($iflag = true)
if not $iflag then exit
$iflag = not $iflag
endfunc 本帖最后由 netegg 于 2015-4-12 15:39 编辑
func function($iflag = 0)
if $iflag then exit
$iflag += 1
endfunc 自己看着办吧,无非是参数判断是否运行罢了 嗯,利用状态变量来标识一下 3楼的对,,,,常用
页:
[1]