标签: php
而不是我得到的理想结果:
“致命错误:无法在C:\ wamp \ www \ counter.php中重新声明count() 第25行“我究竟做错了什么?
function count( ) { static $count = 0; $count++; return $count; } // should print 1 print count( ); // should print 2 print count( );
答案 0 :(得分:2)
count函数已经在PHP(see the manual)中定义,这就是为什么PHP抱怨你已经重新声明它。
count
如果您更改了功能的名称,它应该有效。