讓我們假設的第一要素,一搜索氣電兩用的返回值是這樣的得到一個數組
// If only one record is found
$value = [
'records' => [
'record' => ['some', 'Important', 'Information']
]
]
// If multiple records are found
$value = [
'records' => [
'record' => [
0 => ['some', 'important', 'information'],
1 => ['some', 'information', 'I dont care']
]
]
]
什麼woul'd是讓重要的信息(在多個記錄的情況下,最好的辦法,它總是第一個)?
我是否應該像
if (array_values($value['record']['records'])[0] == 0){//do something};
但我想,有一種方法更優雅的解決方案。
編輯: 而順便說一句,這不是一個重複的引用問題,只涉及多個記錄。
Right @Uchiha並詳細解釋您的查詢。沒有得到你想要的。 –
返回值應該是['some','important','infomation']。 –
[獲取數組的第一個元素]的可能的副本(http://stackoverflow.com/questions/1921421/get-the-first-element-of-an-array) – marian0