去除方法:1、用「$str='取得的資料';」語句將資料存入一個變數中作為字串;2、用「str_replace('"',"",$str )」或「preg_replace('/\"/',"",$str)」語句將字串的雙引號替換為空字元即可。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
php取得的數據去除雙引號的方法
1、將取得的資料存入一個變數中作為字串
$str='获取的数据';
2、將字串的雙引號替換為空字元
方法1:利用str_replace()函數
<?php header('content-type:text/html;charset=utf-8'); $str = 'My name is "LiHua","20" years old!'; echo "原字符串:".$str."<br>"; $new = str_replace('"',"",$str); echo "新字符串:".$new; ?>
方法2:利用preg_replace()函數配合正規表示式/\"/
<?php header('content-type:text/html;charset=utf-8'); $str = 'My name is "LiHua","20" years old!'; echo "原字符串:".$str."<br>"; $new = preg_replace('/\"/',"",$str); echo "新字符串:".$new; ?>
#推薦學習:《PHP影片教學》
以上是php取得的資料怎麼去除雙引號的詳細內容。更多資訊請關注PHP中文網其他相關文章!