I'm trying to post UTF-8 characters i.e. German accents to an external site. However when it gets there it appears like this:
ö
instead of this:
ö
If I var_dump() with the appropriate UTF-8 headers I see the accented letter as it should be.
Here's the code I'm using when attempting to POST:
$request = Request::factory($url)
->method(Request::POST)
->post($params)
->headers('Content-Disposition', 'form-data; name="postdata"')
->headers('Content-Type', 'text/plain; charset=UTF-8')
->headers('Content-Transfer-Encoding', '8bit');
$response = $request->execute();
Based on the guide here: http://kohanaframework.org/3.2/guide/kohana/requests#external-requests
The receiving URL is built on Java Spring. I have tested the posting process with the use of JMeter. When posting UTF-8 accented characters it had no problem catching them. The headers in the PHP sample above use the same settings as the tests.
It has to be an issue with the PHP as the JMeter tests worked fine.
I am also able to pull accented UTF-8 characters from a database through to the website via the JAVA receiver site, then through PHP/Kohana/HTML and display them without problems.
Further info:
I have found that if I run
utf8_encode('ö');
// returns ö
So I wonder if this is happening in the POST.
ölooks like the binary representation of UTF-8ödisplayed with a latin-1 character set. Are you sure that this is not a display problem? At least the bytes went through, if you tell your browser to display that as UTF-8, you should see theö. However if you encoded it again withutf8_encodethan you won't. – hakre Oct 11 '11 at 15:13