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