望ましい結果の代わりに、次のようになります。
「致命的なエラー:25行目のC:\ wamp \ www \ counter.phpでcount()を再宣言できません」
私は実際に何を間違っているのですか?
function count( )
{
static $count = 0;
$count++;
return $count;
}
// should print 1
print count( );
// should print 2
print count( );