1
$arNotes = explode('<br>',$value[0]['notes']);
$arGenStatus = explode(':', $arNotes[1]);
$genStatusValue = explode('->', trim(preg_replace('/; /','',$arGenStatus[1])), 2);
var_dump($genStatusValue); exit;
當我var_dump或echo數組時,我產生以下值。爆炸導致未定義的偏移
array(2) { [0]=> string(7) "closed " [1]=> string(10) " cancelled" }
但是,下面的一個產生不確定的偏移1個錯誤
if ($genStatusValue[1] == 'cancelled') {
$op = '+';
}
你能'的print_r($ arGenStatus)'? – aldrin27
@ aldrin27數組([0] =>一般狀態[1] =>關閉 - >取消;) – Corbee
@ aldrin27這可能是一個錯誤?我正在使用PHP 5.6.14 – Corbee