gdfhghjdfghgfhf Posted April 27, 2010 Share Posted April 27, 2010 ok so here is my situation: i have a t-shirt shop at spreadshirt.com, but it is in french i'm trying to translate the main page in english so i use file_get_contents() to display the page, and then i use str_replace() to translate the words i can translate all the words but when i try to replace a word with accents it doesn't work... how to solve this problem ? Quote Link to comment https://forums.phpfreaks.com/topic/199871-file_get_contents-str_replace-and-accents/ Share on other sites More sharing options...
developerdave Posted April 27, 2010 Share Posted April 27, 2010 You might want to have a look at http://php.net/manual/en/function.utf8-decode.php This guy seems to have a good little function for you. www.php.net is your best friend function utf8dec ( $s_String ) { $s_String = html_entity_decode(htmlentities($s_String." ", ENT_COMPAT, 'UTF-8')); return substr($s_String, 0, strlen($s_String)-1); } Quote Link to comment https://forums.phpfreaks.com/topic/199871-file_get_contents-str_replace-and-accents/#findComment-1049146 Share on other sites More sharing options...
Mchl Posted April 27, 2010 Share Posted April 27, 2010 You might also want to take a look at MBstring functions http://pl.php.net/manual/en/ref.mbstring.php Quote Link to comment https://forums.phpfreaks.com/topic/199871-file_get_contents-str_replace-and-accents/#findComment-1049160 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.