0
我有一個字符串,該圖形模式刪除
a:22:{s:10:"identifier";s:17:"12345678912345678";s:10:"URL";s:0:"";s:10:"profile";s:62:"https://www.xyz.com//";}
我想刪除該字符串計數,比如s:10或S:從這個串17,所以我可以在JSON
我有一個字符串,該圖形模式刪除
a:22:{s:10:"identifier";s:17:"12345678912345678";s:10:"URL";s:0:"";s:10:"profile";s:62:"https://www.xyz.com//";}
我想刪除該字符串計數,比如s:10或S:從這個串17,所以我可以在JSON
這不是JSON,因此不應該解碼爲JSON。這是一個使用PHP serialize()
函數的序列化字符串。要「解碼」此字符串,請使用PHP的unserialize()
函數。
json_encode(unserialize($ value)) – GhostGambler