empty(), isset() 은 함수가 아니라 language construct 이므로, variable function 을 매개변수로 넣으면 에러가 발생한다.
무조건 변수로 넣어줘야 함.


// 옳은 예 (O)
$x = func();
if (empty($x) === true) ~~~

// 틀린 예 (X)
if (empty(func()) === true) ~~~




참고 : http://www.php.net/empty#refsect1-function.empty-notes



Posted by bloodguy
,