PHP Warning: Creating default object from empty value in
Object형식이 아닌 변수 혹은 empty value를 Object 형식으로 사용할 때 주로 나타나는 오류.
예시)
// Bad;
$stirng->etc->emai = 'email';
// Good!
if(!isset($stirng->etc) || !is_object($stirng->etc))
{
$stirng->etc = new stdclass();
$stirng->etc->emai = 'email';
}
'Language > PHP' 카테고리의 다른 글
[Deprecated] $HTTP_COOKIE_VARS 대체 (0) | 2020.03.10 |
---|---|
PHP Warning: Division by zero in (0) | 2020.03.10 |
PHP Fatal error: Cannot use isset() on the result of an expression (0) | 2020.03.09 |
PHP Warning: Use of undefined constant string - assumed 'string' (0) | 2020.03.09 |
PHP Warning: Invalid argument supplied for foreach() in (0) | 2020.03.09 |