i'm trying to take double quotes out of a $string but it'll only work if $string doesn't have any single quotes inside.. so if
$string = ""don't do this"";
then it won't work...
$string = preg_replace("/\"(.*)\"$/", "$1", $string);
how can i change that to make it allow single quotes in $string?