Jump to content

file_get_contents() , str_replace() and accents


gdfhghjdfghgfhf

Recommended Posts

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 ?

Link to comment
Share on other sites

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);
    }

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.