請看下面的程式碼:
在處理前有兩個陣列arrTitle
和arrHref
,
其中arrTitle
內容如下:
arrHref
內容如下:
<code class="php">//将title数组中首元素取出,作为栏目标题 foreach ($arrTitle as &$title) { $text [] = $title[0]; unset($title[0]); } //将href数组中首元素取出,作为栏目url foreach ($arrHref as &$href) { $url [] = $href[0]; unset($href[0]); } print_r($arrTitle); //重新组织title项 $title = array_combine($text, $url); print_r($arrTitle);die;</code>
運行上面的PHP程式碼,把title和href中每項的首元素取出並去除,然而問題來了,在執行array_combine
之前,$arrTitle
是這樣的:
然而在執行array_combine
之後,$arrTitle
變成了這樣:
為什麼,$arrTitle
的最後一個元素變成了array_combine()
的結果,而array_combine()
函數並沒有對$arrTitle
執行了修改?
請看下面的程式碼:
在處理前有兩個陣列arrTitle
和arrHref
,
其中arrTitle
內容如下:
arrHref
內容如下:
<code class="php">//将title数组中首元素取出,作为栏目标题 foreach ($arrTitle as &$title) { $text [] = $title[0]; unset($title[0]); } //将href数组中首元素取出,作为栏目url foreach ($arrHref as &$href) { $url [] = $href[0]; unset($href[0]); } print_r($arrTitle); //重新组织title项 $title = array_combine($text, $url); print_r($arrTitle);die;</code>
運行上面的PHP程式碼,把title和href中每項的首元素取出並去除,然而問題來了,在執行array_combine
之前,$arrTitle
是這樣的:
然而在執行array_combine
之後,$arrTitle
變成了這樣:
為什麼,$arrTitle
的最後一個元素變成了array_combine()
的結果,而array_combine()
函數並沒有對$arrTitle
執行了修改?
<code>**$title** = array_combine($text, $url); </code>
這裡的$title 和上面循環裡的 $title 重名,改個名字就好了。 php 裡沒有區塊作用域。
此bug已經解除,感謝 @whyreal 指出重名問題。
由於在foreach循環中,以引用方式
遍歷數組,當循環結束時,$title
指向了$arrTitle
的最後一組元素。
由於PHP沒有塊級作用域,在$title = array_combine($arr1, $arr2),之後這個$title同時修改了它指向的$arrTitle
的最後一組元素,由此產生了bug。
修改後面$title
的名稱解除此bug。