2014-10-05 275 views
0

今天我試圖將雙引號轉換爲單引號。將雙引號轉換爲單引號

我得到這個:

$string=" WHERE news_cat='$catid' AND news_title LIKE '%$searchnews%'"; 

我這樣做,但它沒有工作:

$string = ' WHERE `news_cat` = \'' . $catid . '\' AND `news_title` LIKE '%$searchnews%''; 

回答

1

您還需要躲避最後單引號:

LIKE \'%'.$searchnews.'%\''; 
+1

謝謝很多!我非常親密,但從來沒有想過這樣做。大聲笑 – user2583893 2014-10-05 12:59:25

+0

不客氣,請接受我的答案,如果你認爲它解決了你的問題。 – Cyclonecode 2014-10-05 13:00:09

+0

我不知道你是否可以在這裏幫助這個http://stackoverflow.com/questions/26161065/negative-value-error-in-limit-clause:這整個文件www.bestbuildpc.org/bugfiles/index.txt – user2583893 2014-10-05 13:17:30