How can I replace ""
(I think it’s called double quotes) with ''
(I think its called single quotes) using PHP?
str_replace('"', "'", $text);
or Re-assign it
$text = str_replace('"', "'", $text);
Answer:
Use
$str = str_replace('"','\'',$str)
Answer:
Try with preg_replace,
<?php
$string="hello \" sdfsd \" dgf";
echo $string,"\n";
echo preg_replace("/\"/","'",$string);
?>
Answer:
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");
?>
Answer:
Try with strtr,
<?php
$string="hello \" sdfsd dgf";
echo $string;
$string = strtr($string, "\"", "'");
echo $string;
?>
Answer:
For PHP 5.3.7
$str = str_replace('"',''',$str);
OR
$str = str_replace('"',"'",$str);
For PHP 5.2
$str = str_replace('"',"'",$str);
Answer:
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
Answer:
Try this
//single qoutes
$content = str_replace("\'", "'", $content);
//double qoutes
$content = str_replace('\"', '"', $content);