我有一个数组(一行csv文件)。此数组包含以下数据(var_dump($rowData)
)。
array(8) {
["Kategorie"]=>
string(12) "Bio- Bäcker"
["Name"]=>
string(31) "A nice name"
["Adresse"]=>
string(27) "the street 13"
["PLZ"]=>
string(5) "08056"
["Ort"]=>
string(7) "Zwickau"
["Tel"]=>
string(14) "0375/390 xxx"
["Mail"]=>
string(24) "info@doktor-xxx.xx"
["Website"]=>
string(27) "http://doktor-xxx.xx/"
}
通过运行$rowData['key']
获取值我得到一个错误 - 但只有第一个数组键(Kategorie)。 PHP告诉我,密钥不存在。
我尝试了一些东西,所有其他键都可以调用,但不是第一个。
$profileName = $rowData['Name'];
$profileAddress = $rowData['Adresse'];
$profileZip = $rowData['PLZ'];
$profileCity = $rowData['Ort'];
$profilePhone = $rowData['Tel'];
$profileWebsite = $rowData['Website'];
$profileMail = $rowData['Mail'];
$profileCategory = $rowData['Kategorie'];
只是不知道我的代码有什么问题......