PHP Fatal error: Cannot use isset() on the result of an expression
isset()함수를 사용할 때 안에 값에 변수에 $ 안붙였을 때 많이 발생.
예시)
isset(test); // Bad;
isset($test); // Good;
'Language > PHP' 카테고리의 다른 글
PHP Warning: Division by zero in (0) | 2020.03.10 |
---|---|
PHP Warning: Creating default object from empty value in (0) | 2020.03.10 |
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 |
PHP Warning: htmlspecialchars(): charset 'euc_kr' not supported, assuming utf-8 in (0) | 2020.03.09 |