Re: [PHP] Char encoding using fget or curl

2005-07-22 Thread Richard Lynch
On Mon, July 18, 2005 2:14 pm, Marcelo Volmaro said: I need to get some information from a webpage, that is served as UTF-8. I need that information because the page contains different language characters. The problem is that no matter if I use fget or the CURL libraries, i got the information

[PHP] Char encoding using fget or curl

2005-07-18 Thread Marcelo Volmaro
Hi!, I need to get some information from a webpage, that is served as UTF-8. I need that information because the page contains different language characters. The problem is that no matter if I use fget or the CURL libraries, i got the information in ISO-8859-1. How can i overcome this? Take

Re: [PHP] Char encoding using fget or curl

2005-07-18 Thread Jochem Maas
Marcelo Volmaro wrote: Hi!, I need to get some information from a webpage, that is served as UTF-8. I need that information because the page contains different language characters. The problem is that no matter if I use fget or the CURL libraries, i got the information in ISO-8859-1. How can

Re: [PHP] Char encoding using fget or curl

2005-07-18 Thread Marcelo Volmaro
But my problem is that the information i get from the fget or curl is ALREADY converted!!! And by what i see, the function overloading don´t work on fget. On Mon, 18 Jul 2005 18:56:36 -0300, Jochem Maas [EMAIL PROTECTED] wrote: Marcelo Volmaro wrote: Hi!, I need to get some information

Re: [PHP] Char encoding using fget or curl

2005-07-18 Thread Ligaya Turmelle
I have never done this but - have you tried using curl_setopt to have is sent as a binary file and try to go from there? Marcelo Volmaro wrote: But my problem is that the information i get from the fget or curl is ALREADY converted!!! And by what i see, the function overloading don´t work