hp中怎么讓json_encode不自動轉義斜杠“/”?下面本篇文章給大家介紹一下PHP中讓json_encode不自動轉義斜杠“/”的方法。
最近將使用爬蟲爬取的鏈接保存到 mysql 數(shù)據(jù)庫中時,發(fā)現(xiàn)我將鏈接使用 json_encode 保存時候,在數(shù)據(jù)庫中卻顯示了轉義字符,我并不需要這轉義的,看起來不清晰而且占用存儲空間。
后來發(fā)現(xiàn)在默認的情況之下使用 json_encode 對數(shù)組進行 json 格式的轉換時候會自動的將數(shù)據(jù)中含有斜杠的字符串進行轉義,但是我們往往有的時候不需要藥對它們進行轉義的,本文說說如何使用 json_encode 不自動轉義斜杠。
對于如下數(shù)組 $a,現(xiàn)有兩種辦法解決:
$a = array(
'http://www.baidu.com',
'http://www.baidu.com',
'http://www.baidu.com',
'http://www.baidu.com',
'http://www.baidu.com'
);
其一,正則替換:
$a = str_replace("\\/", "/", json_encode($a));
var_dump($a);
其二,若 php 版本是 5.4 及以上的話:
var_dump(json_encode($a,JSON_UNESCAPED_SLASHES));
到此這篇關于php讓json_encode不自動轉義斜杠“/”的方法的文章就介紹到這了,更多相關php怎么讓json_encode不自動轉義斜杠“/”內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Thinkphp 框架基礎之源碼獲取、環(huán)境要求與目錄結構分析
- php源碼的安裝方法和實例
- php源碼的使用方法講解
- PHP后臺備份MySQL數(shù)據(jù)庫的源碼實例
- PHP自動生成縮略圖函數(shù)的源碼示例
- PHP json_encode中文亂碼解決方法
- 基于php解決json_encode中文UNICODE轉碼問題
- 淺析PHP中json_encode與json_decode的區(qū)別
- 關于php unset對json_encode的影響詳解
- PHP中讓json_encode不自動轉義斜杠“/”的方法
- php json_encode與json_decode詳解及實例
- php中json_encode不兼容JSON_UNESCAPED_UNICODE的解決方案
- java解析php函數(shù)json_encode unicode 編碼問題
- 源碼分析系列之json_encode()如何轉化一個對象