I am trying to replace all double quotes with " on a php string. Here is the code I am attempting:
Code: Select all
str_replace('"','"',$str);Any help would be much valued. Thanks so much,
Chi
Moderator: General Moderators
Code: Select all
str_replace('"','"',$str);Code: Select all
$str = str_replace('"','"',$str);