I send requests from ios and android to some PHP server and some params in GET request are wrongly decoded.
request: http://myserver.com/path?email=john+doe
$_GET['email'] == 'john doe' instead of 'john+doe'
$this->request->get('email') == 'john doe' instead of 'john+doe'
Obviously php (I'm using phalcon) is using urldecode and replace + with 1 space.
How can avoid this? Can I change the type of enconding and "Content-Type" header accordingly?