Hi I have a web service built using the Zend Framework. One of the methods is intended to send details about an order. I ran into some encoding issue. One of the values bein
The answers above lead me to try:
// encode in UTF-8 $string = utf8_encode($string);
which also resolved the error for me.
Reference: utf8_encode()