How can I replace \"\"
(I think it\'s called double quotes) with \'\'
(I think its called single quotes) using PHP?
You can use str_replace, try to use http://php.net/manual/en/function.str-replace.php it contains allot of php documentation.
<?php
echo str_replace("\"","'","\"\"\"\"\" hello world\n");
?>
Try this
//single qoutes
$content = str_replace("\'", "'", $content);
//double qoutes
$content = str_replace('\"', '"', $content);
Try with preg_replace,
<?php
$string="hello \" sdfsd \" dgf";
echo $string,"\n";
echo preg_replace("/\"/","'",$string);
?>
I like to use an intermediate variable:
$OutText = str_replace('"',"'",$InText);
Also, you should have a Test.php file where you can try stuff out:
$QText = 'I "am" quoted';
echo "<P>QText is: $QText";
$UnQText = str_replace ('"', '', $QText);
echo "<P>Unquoted is: $UnQText";
z
str_replace('"', "'", $text);
or Re-assign it
$text = str_replace('"', "'", $text);
Use
$str = str_replace('"','\'',$str)