我是PHP編程新手, 我需要解析json字符串。 這是字符串我有什麼作爲JSON陣列PHP Json解析器
[{"datetime":"17/02/2014 13:18:30","type":"testtype","locationid":"1","GPSType":"GOOGLE","GPSLatitude":"1.1","GPSLongtitude":"1.2","userid":"admin","brand":"1234567","numbers":["num1","num2","num3]}]
在上面的字符串我只需要解析數字陣列。
用['json_decode()'](http://php.net/json_decode) - 但要確保JSON字符串是有效的,否則它會返回NULL。您在問題中使用的JSON字符串是***不是有效的(因爲您可以使用http://jsonlint.com等在線驗證器進行驗證) –
使用'json_decode()'。 –
如果我只是[搜索](https://duckduckgo.com/?q=parse+json+with+php),那麼適當的PHP [文檔](http://php.net/manual/en/function.json -decode.php)是第一個命中。 – Quentin