将双引号转换为单引号

时间:2014-10-05 12:47:18

标签: php quotes

我今天很难被试图将双引号转换为单引号。

我明白了:

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

我这样做了,但它没有工作:

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

1 个答案:

答案 0 :(得分:1)

您还需要转义最后一个单引号:

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