我有一個多陣列,如何訪問各個項目,即「個人資料標題」,是有辦法,我可以遍歷數組變量賦值給每個數組值例如PHP多維數組
$ firstarray - >名稱 $ firstarray-> HTML
$ secondarray-> TYPEID
感謝
array(4) {
[0]=>
array(4) {
["name"]=>
string(13) "profile title"
["html"]=>
string(52) "<h2 class="entry-title" id="title">Your Profile</h2>"
["typeId"]=>
string(1) "1"
}
[1]=>
array(4) {
["name"]=>
string(8) "username"
["html"]=>
string(145) "<fieldset disabled><br><label for="nameinput">Username</label><input type="text" id="userName"class="form-control" placeholder="" ></fieldset><p>"
["typeId"]=>
string(1) "1"
}
感謝您的幫助 – user3524311