起初,我有這個(在WAMP但不是在我的Web服務器的工作)問題與array_map回調
$ids = array_map(function($item) { return $item['user_id']; }, $data['student_teacher']);`
所以我嘗試將代碼轉換爲,但沒有工作(我得到了數組,數組,數組,數組,數組,從outpout陣列)
$ids = array_map($this->myarraymap(null), $data['student_teacher']);
function myarraymap($item) {
return $item['user_id'];
}
這是特定於PHP的,而不是CodeIgniter特定的問題。 – Tadeck