PHP Warning: sizeof(): Parameter must be an array or an object that implements Countable in
sizeof()함수를 사용할 때 array 혹은 object타입인지 체크를 하지 않아서 생기는 오류.
예시)
sizeof($string); // Bad;
if(is_array($stirng) || is_object($stirng)){
sizeof($string); // Good!
}
'Language > PHP' 카테고리의 다른 글
PHP Fatal error: Uncaught Error: Call to undefined function (0) | 2020.03.10 |
---|---|
PHP Fatal error: Cannot redeclare function() (previously declared in ~) (0) | 2020.03.10 |
[Deprecated] session_is_registered() 대체 (0) | 2020.03.10 |
[Deprecated] mysql 대체 (0) | 2020.03.10 |
[Deprecated] $HTTP_GET_VARS 대체 (0) | 2020.03.10 |