문제

I have created a session variable to store some basic stats:

 $_SESSION['stats'] = array('likecount' => 0, 'failedlikes' => 0);

Further down I have a line which increments it:

$_SESSION['stats']->likecount++;

However, this throws the error Attempt to increment/decrement property of non-object. What am I doing wrong?

도움이 되었습니까?

해결책

You're dealing with an array, not with an object, so you should use

$_SESSION['stats']['likecount']++; 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top