如何使用字串作為索引路徑存取數組值
如果你有一個結構複雜的數組,你可能會遇到需要使用表示該值路徑的字串來存取特定值。由於潛在的安全漏洞,不建議使用 eval()。相反,可以建立一個可以處理此任務的自訂函數。
考慮以下範例陣列:
Array ( [0] => Array ( [Data] => Array ( [id] => 1 [title] => Manager [name] => John Smith ) ) [1] => Array ( [Data] => Array ( [id] => 1 [title] => Clerk [name] => ( [first] => Jane [last] => Smith ) ) ) )
您可以建立一個將字串作為索引路徑的函數,並要作為輸入存取的陣列:
function($indexPath, $arrayToAccess) { // $indexPath would be something like [0]['Data']['name'] which would return // "Manager" or it could be [1]['Data']['name']['first'] which would return // "Jane" but the amount of array indexes that will be in the index path can // change, so there might be 3 like the first example, or 4 like the second. return $arrayToAccess[$indexPath] // <- obviously won't work }
要實現所需的功能,您可以利用explode()函數:
$paths = explode(":", $indexPath); $itens = $myArray; foreach($paths as $ndx){ $itens = $itens[$ndx]; }
在此範例中,$pathStr代表輸入字串路徑,$myArray 是要存取的陣列。此程式碼迭代 $paths 的元素,即 $indexPath 中以冒號 (:) 分隔的子字串,並使用當前 $itens 迭代中 $ndx 處的值更新 $itens。
作為結果,$itens 將包含您根據指定的字串路徑從陣列中尋找的值。這種方法比使用 eval() 更安全、更靈活,因為它不涉及動態執行 PHP 程式碼。
以上是出於安全原因,如何使用字串作為索引路徑來存取複雜數組中的特定值,而不依賴 eval() ?的詳細內容。更多資訊請關注PHP中文網其他相關文章!