我有一個陣列打印這樣的:訪問PHP數組內
array(2) {
["systems"]=>
array(5) {
[1]=>
string(1) "1111"
[2]=>
string(1) "2222"
[3]=>
string(1) "3333"
[4]=>
string(1) "4444"
[5]=>
string(1) "5555"
}
["test"]=>
string(2) "on"
}
現在,我想進入每家每戶內在價值與使用的foreach或將與代碼打交道的任何代碼。
我的意思是,例如,我想呼應出這樣的事情:
System "1" has "1111" value.
System "2" has "2222" value.
System "3" has "3333" value.
System "4" has "4444" value.
System "5" has "5555" value.
我怎樣纔能有輸出代碼?
@馬克我一直在使用foreach循環真的盡力了,但我每次都得到了錯誤的每臺。 – user3394468 2014-10-29 14:44:07
你有什麼錯誤? – dyachenko 2014-10-29 14:44:52
@ user3394468分享你的代碼和你的錯誤信息會更好,所以我們可以幫助你解決你遇到的問題,並幫助你理解你做錯了什麼。這是非常喜歡「爲我工作」的問題。 – Mark 2014-10-29 14:45:22