Created
September 11, 2015 17:28
-
-
Save byjg/59335b6ba9131ae1faf4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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