如何使用PHP ""用''(我认为其称为单引号)替换(我认为它称为双引号)?
""
''
str_replace('"', "'", $text);
或重新分配
$text = str_replace('"', "'", $text);