|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-09-07 19:02 UTC] tony2001@php.net
[2006-09-10 06:14 UTC] ashabi at yahoo dot com
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 03:00:01 2025 UTC |
Description: ------------ When I explode a URL it does not display the hebrew character in my URL properly. Reproduce code: --------------- $page = explode("/", $_SERVER['PATH_INFO']); $letter = $page[7]; echo $letter; $page[7] is a hebrew letter. Expected result: ---------------- For example: ? Actual result: -------------- For example: א FYI - If I were to use the $_REQUEST function then it would display the hebrew letter properly.