用单PHP替换双引号

时间:2020-10-07 17:33:43

标签: php html string

我有一个文本类型“ test”,并且我想要“ test”,我使用了str_replace(“”“,”'“),但它对我没有用,因此该文本在pdf

1 个答案:

答案 0 :(得分:1)

您必须escape引用。否则它将无法识别:

$new = str_replace('\'', "\"", $old);