json 轉碼
<code>json_encode(<span>$mixed</span>);</code>
json 解碼成原始資料
<code>json_decode(<span>$json</span>,[ture]);<span>//ture</span> 表示解析成数组</code>
判斷 資料是合法的 json 字串
<code><span><span>function</span><span>is_json</span><span>(<span>$string</span>)</span> {</span> json_decode(<span>$string</span>); <span>return</span> (json_last_error() == JSON_ERROR_NONE); }</code>
人版權聲明:知識取之於民!歡迎轉載,轉載請開頭附上本文鏈接,不定期更新文章!
以上就介紹了php 處理json 和 xml,包含了面向的內容,希望對PHP教學有興趣的朋友有幫助。