0
我有這樣的代碼:
Session::set('dt[global][temp][arrLanguage_selector]', $arrLanguage_selector);
和
Session::set('dt[global][env][country]', $country);
在其他頁面稍後我會嘗試讓這些值回來了:
$global = Session::get('dt[global]');
$env= $global[env][country]ç
$lang = [temp][arrLanguage_selector];
但它無法正常工作。它正在返回null
我錯過了什麼?
是$ country數組()? – jonju
不,它是一個字符串。 – zwitterion