Hi,
This is verified with 4.1.2 and 4.2.3
but not with 4.3.Opre2

[config]
Apache 1.3.27
RedHat 7.2
gettext-0.11.15

[myFile.php]
$lang='fr_FR';
putenv("LANG=$lang");
setlocale(LC_ALL,$lang);
bindtextdomain($domain,"/MyDir/i18n");
textdomain($domain);

$a=10.12345;
echo $a; // print 10.12345

require('myOtherFile.php');

[myOtherFile.php]
$b=10.12345;
echo $b; // print 10

So, printing a double in a required file
after gettext configuration change the behaviour
of a double scalar.

Can somebody explain this?
Is it a bug?

Thanks!
Jean-Pierre



___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com

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

Reply via email to