Zitat von Andrew Sitnikov <[EMAIL PROTECTED]>:

> Hello Stig,
> 
> SSB> Huh, are you saying PHP _is_ locale-dependant?
> Yes.
> 
> Example:
> 1.php
> <?
>   setlocale(LC_ALL,'ru_RU.CP1251');
>   include('2.php');
> ?>
> 
> 2.php
> <?
>   $var = 1.3;
>   var_dump($var);
> ?>
> 
> gap /home/local/sitnikov> GET http://si.infonet.ee/1.php
> float(1)
> 
> Locale ru_RU.CP1251 has decimal delimiter ',';
> 
> I understand why it occurs (thanks to Stanislav Malyshev), but this is
> not correct behaviour IMHO, and must be fixed ASAP.

Perhaps Bug 16865 (http://bugs.php.net/bug.php?id=16865) falls into the 
same category of locale dependent bugs:

To quote from the bug entry:

---snip---
It seems like some constants are getting
undefined if you set the locale to tr_TR. It happens randomly with
internally defined and user defined constants and is reproducable with
this little script:

<?php

setlocale(LC_ALL, 'tr_TR');

echo extension_loaded('imap');
echo SORTARRIVAL;

?>
---snip---

This happened so far only with this specific locale, 'tr' for example works.

Jan.

--
http://www.horde.org - The Horde Project
http://www.ammma.de - discover your knowledge
http://www.tip4all.de - Deine private Tippgemeinschaft

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to