如果在将数据库插入数据库中的表之前检测到它们,请如何强制删除单引号和双引号?每当我用引号和单引号读取数据库中的数据时,我遇到了问题。
这是我尝试过的代码。
<?php
$string = "sample 'word' with a quotation";
$string = preg_replace("/<!--.*-->/", "", $string);
echo $string;
?>
我的代码无效。还有更好的选择吗?
答案 0 :(得分:1)
$string = "sample 'word' with a quotation";
$string = str_replace(array("'",'"'), "", $string);
echo $string; // sample word with a quotation