Ricevo questo errore e non riesco a capirlo.
Il messaggio di errore esatto è:
Errore irreversibile: impossibile utilizzare il valore restituito dalla funzione nel contesto di scrittura in /home/curricle/public_html/descarga/index.php sulla riga 48
La linea 48 è:
if (isset($_POST('sms_code') == TRUE ) {
Cosa potrebbe succedere qui?
Ecco la funzione completa:
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);
}
$state
non verrà modificato, non è necessario reimpostarlo NOTHING_SUBMITED
se è già quel valore.