up vote 4 down vote favorite
share [g+] share [fb]

Hy everyone how can I replace "" // i think its called double quotes with '' // i think its called single quotes using PHP ?

link|improve this question

3  
Lets say you had "Testing" - you want 'Testing' - and vice-versa? What about "They're" - you want 'They"re' ?? – gnarf Mar 11 '10 at 10:51
tinyurl.com/yc8lewr – cwallenpoole Mar 11 '10 at 13:05
feedback

5 Answers

up vote 10 down vote accepted
str_replace('"',"'",$text);
link|improve this answer
Thanks this worked for me; – streetparade Mar 11 '10 at 10:56
feedback

Use

$str = str_replace('"','\'',$str)
link|improve this answer
feedback

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");
?>
link|improve this answer
feedback

Try with preg_replace,

<?php
$string="hello \" sdfsd \" dgf";
echo $string,"\n";
echo preg_replace("/\"/","'",$string);
?>
link|improve this answer
feedback

Try with strtr,

<?php
$string="hello \" sdfsd dgf";
echo $string;
$string = strtr($string, "\"", "'");
echo $string;
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.