I\'m using CURL to import some code. However, in french, all the characters come out funny. For example: Bonjour ...
I don\'t have access to change anything on the
You could replace your
$data = curl_exec($ch);
by
$data = utf8_decode(curl_exec($ch));
I had this same issue and it worked well for me.