Skip to content

Instantly share code, notes, and snippets.

@byjg
Created September 11, 2015 17:28
Show Gist options
  • Save byjg/59335b6ba9131ae1faf4 to your computer and use it in GitHub Desktop.
Save byjg/59335b6ba9131ae1faf4 to your computer and use it in GitHub Desktop.
<?php
$string = "This is a example with special “quotes” and ‘single quotes’";
echo $string . "\n";
echo fixcurly($string) . "\n";
function fixcurly($string)
{
$search = array("\xe2\x80\x9c", "\xe2\x80\x9d", "\xe2\x80\x98", "\xe2\x80\x99");
$replace = array('"', '"', "'", "'");
return str_replace($search, $replace, $string);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment