ID: 28596
Updated by: [EMAIL PROTECTED]
Reported By: fixxxer at netvision dot net dot il
-Status: Feedback
+Status: No Feedback
Bug Type: *Languages/Translation
Operating System: win2000
PHP Version: 4.3.6
New Comment:
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
Previous Comments:
------------------------------------------------------------------------
[2004-06-01 11:08:45] fixxxer at netvision dot net dot il
the locale was sucesfully set, and you can see it by using strftime()
the date returns is in hebrew.
the problem is only with the chars.
------------------------------------------------------------------------
[2004-06-01 08:16:10] [EMAIL PROTECTED]
What does the call to setlocale() return? Was the locale sucesfully
set?
------------------------------------------------------------------------
[2004-06-01 01:00:38] fixxxer at netvision dot net dot il
Description:
------------
to check if setlocale (LC_ALL,"hebrew") works i tried printing the date
in hebrew as well.
the problem is wierd.
the date is in hebrew, but regex still having problems with the
hebrew.
\w that suppose if the text contains legal chars (and _) works
perfectly with english but makes problems with hebrew.
if i ain't using setlocale he thinks that "�" is not a char.
if i do use setlocale he thinks that about all the hebrew letters.
Reproduce code:
---------------
<?php
setlocale (LC_ALL,"hebrew");
$long_date = strftime("%A, %d %B %Y");
echo $long_date . "<br />";
$str = "�����";
if (preg_match('/[EMAIL PROTECTED]/i',$str)) {
print "wrong!";
}
?>
Expected result:
----------------
��� �����, 01 ���� 2004
Actual result:
--------------
��� �����, 01 ���� 2004
wrong!
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=28596&edit=1