[php] 이상한 PHP 오류 : ‘쓰기 컨텍스트에서 함수 반환 값을 사용할 수 없습니다’

이 오류가 발생하여 머리 나 꼬리를 만들 수 없습니다.

정확한 오류 메시지는 다음과 같습니다.

치명적인 오류 : 48 행의 /home/curricle/public_html/descarga/index.php에 쓰기 컨텍스트에서 함수 반환 값을 사용할 수 없습니다.

48 행 :

if (isset($_POST('sms_code') == TRUE ) {

여기서 무슨 일이 일어날 수 있습니까?

전체 기능은 다음과 같습니다.

function validate_sms_code() {

    $state = NOTHING_SUBMITED;

    if (isset($_POST('sms_code') == TRUE ) {
        $sms_code = clean_up($_POST('sms_code'));
        $return_code = get_sepomo_code($sms_code);

        switch($return_code) {

          case 1:
            //no error
            $state = CORRECT_CODE;
            break;

          case 2:
            // code already used
            $state = CODE_ALREADY_USED;
            break;

          case 3:
            // wrong code
            $state = WRONG_CODE;
            break;

          case 4:
            // generic error
            $state = UNKNOWN_SEPOMO_CODE;
            break;

          default:
            // unknown error
            $state = UNKNOWN_SEPOMO_CODE;
            throw new Exception('Unknown sepomo code: ' . $return_code);
            break;
        }

    } else {
        $state = NOTHING_SUBMITED;
    }
    dispatch_on_state($state);
}



답변

네 말 뜻은

if (isset($_POST['sms_code']) == TRUE ) {

우연히 당신은 정말 의미

if (isset($_POST['sms_code'])) {


답변

함수 반환에서 empty를 사용할 때도 발생합니다.

!empty(trim($someText)) and doSomething()

empty는 함수가 아니라 언어 구조이기 때문에 (확실하지 않음) 변수 만 가져옵니다.

권리:

empty($someVar)

잘못된:

empty(someFunc())

PHP 5.5부터는 변수 이상을 지원합니다. 그러나 5.5 이전에 필요하면을 사용하십시오 trim($name) == false. 에서 빈 문서 .


답변

if (isset($_POST('sms_code') == TRUE ) {

이 줄을

if (isset($_POST['sms_code']) == TRUE ) {

괄호 ()를 사용하고 $_POST있지만 대괄호 []를 원했습니다.

🙂

또는

if (isset($_POST['sms_code']) && $_POST['sms_code']) {
//this lets in this block only if $_POST['sms_code'] has some value 


답변

를위한 워드 프레스 :

대신에:

if (empty(get_option('smth')))

해야한다:

if (!get_option('smth'))


답변

올바른 구문 (결국에 괄호가 없음) :

if (isset($_POST['sms_code']) == TRUE ) {
                            ^

PS == TRUE BOOLEAN (true / false)이 이미 반환되었으므로 부분 이 필요하지 않습니다 .


답변

이것은 하나 이상의 시나리오에서 발생할 수 있으며 아래는 잘 알려진 시나리오 목록입니다.

// calling empty on a function 
empty(myFunction($myVariable)); // the return value of myFunction should be saved into a variable
// then you can use empty on your variable

// 괄호를 사용하여 배열의 요소에 액세스하면 괄호는 함수를 호출하는 데 사용됩니다.

if (isset($_POST('sms_code') == TRUE ) { ...
// that should be if(isset($_POST['sms_code']) == TRUE)

아래처럼 함수의 결과를 증가 시키려고 할 때 트리거 될 수도 있습니다 :

$myCounter = '356';

$myCounter = intVal($myCounter)++; // we try to increment the result of the intVal...
// like the first case, the ++ needs to be called on a variable, a variable should hold the the return of the function then we can call ++ operator on it.


답변

문제는 ()당신이 가야한다는 것입니다[]

if (isset($_POST('sms_code') == TRUE)

으로

if (isset($_POST['sms_code'] == TRUE)