unread
Hi,
In PHP 6, is there a reason all of the keys in $_SERVER are binary
except for PHP_SELF, which is unicode?
Thanks,
Greg
unread
Hi,
In PHP 6, is there a reason all of the keys in $_SERVER are binary
except for PHP_SELF, which is unicode?
The ones that come from the SAPI the end up binary, the ones added
internally by PHP end up with unicode keys because we can guarantee
they're valid.
Scott