如何将双引号替换为单引号

2022-08-30 11:57:41

我如何使用PHP替换(我认为它被称为双引号)(我认为它称为单引号)?""''


答案 1
str_replace('"', "'", $text);

或重新分配

$text = str_replace('"', "'", $text);

答案 2

$str = str_replace('"','\'',$str)

推荐