使用字串路徑設定巢狀陣列資料
問題:
如何動態設定巢狀使用字串路徑的數組數據,例如“cars.honda.civic” $data'cars'['civic'] 不依賴eval()?
答案:
引用運算子(&) 允許此動態設定:
$temp = &$data; foreach ($exploded_path as $key) { $temp = &$temp[$key]; } $temp = $value; unset($temp);
透過使用此方法,您可以有效地設定嵌套數組數據,而不需要eval()。它的工作原理如下:
以上是如何在 PHP 中使用字串路徑動態設定嵌套數組資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!