1
我有一個類型長度值字符串:轉換TLV到PHP數組
a:4:{s:5:"value";s:4:"0.00";s:4:"type";N;s:12:"discounttype";s:10:"Percentage";s:13:"configoptions";N;}
是否有可能將其轉換爲PHP array
或JSON string
?
我有一個類型長度值字符串:轉換TLV到PHP數組
a:4:{s:5:"value";s:4:"0.00";s:4:"type";N;s:12:"discounttype";s:10:"Percentage";s:13:"configoptions";N;}
是否有可能將其轉換爲PHP array
或JSON string
?
這種字符串可以用unserialize()函數完成。還有一篇關於解決你的需求的文章here。
之後它已經是unserialized
,它是一個數組。然後您可以使用json_encode()函數進行轉換。
如果您需要額外的幫助,請寫評論
謝謝,男人,那是我正在尋找的功能! – Stocki