表格带有引号怎么弄成斜杠

【表格带有引号怎么弄成斜杠】要将引号替换成斜杠,可以使用字符串函数str_replace() 。例如:
$str = "Table with 'quotes'";
$str = str_replace("'", "/", $str);
echo $str; // Outputs: Table with /quotes/

    推荐阅读