From:             dia-lagl at yandex dot ru
Operating system: WinXP SP1
PHP version:      4.3.11
PHP Bug Type:     Strings related
Bug description:  sscanf not correctly works with language distinct from English

Description:
------------
sscanf() not correctly works with language distinct from English language.
For example in Russian language.

Reproduce code:
---------------
>From the documentation in Russian
<?php
// ïîëó÷àåì ñåðèéíûé íîìåð
list($serial) = sscanf("SN/2350001", "SN/%d");
// è äàòó èçãîòîâëåíèÿ
$mandate = "ßíâàðü 01 2000";
list($month, $day, $year) = sscanf($mandate, "%s %d %d");
echo "Óçåë $serial áûë èçãîòîâëåí: $year-" . $month . "-$day\n";
?>


Expected result:
----------------
"Óçåë 2350001 áûë èçãîòîâëåí: 2000-ßíâàðü-1 "

Actual result:
--------------
"Óçåë 2350001 áûë èçãîòîâëåí: -ß- " or something another


-- 
Edit bug report at http://bugs.php.net/?id=32655&edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32655&r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32655&r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32655&r=trysnapshot51
Fixed in CVS:                http://bugs.php.net/fix.php?id=32655&r=fixedcvs
Fixed in release:            http://bugs.php.net/fix.php?id=32655&r=alreadyfixed
Need backtrace:              http://bugs.php.net/fix.php?id=32655&r=needtrace
Need Reproduce Script:       http://bugs.php.net/fix.php?id=32655&r=needscript
Try newer version:           http://bugs.php.net/fix.php?id=32655&r=oldversion
Not developer issue:         http://bugs.php.net/fix.php?id=32655&r=support
Expected behavior:           http://bugs.php.net/fix.php?id=32655&r=notwrong
Not enough info:             
http://bugs.php.net/fix.php?id=32655&r=notenoughinfo
Submitted twice:             
http://bugs.php.net/fix.php?id=32655&r=submittedtwice
register_globals:            http://bugs.php.net/fix.php?id=32655&r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32655&r=php3
Daylight Savings:            http://bugs.php.net/fix.php?id=32655&r=dst
IIS Stability:               http://bugs.php.net/fix.php?id=32655&r=isapi
Install GNU Sed:             http://bugs.php.net/fix.php?id=32655&r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32655&r=float
No Zend Extensions:          http://bugs.php.net/fix.php?id=32655&r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32655&r=mysqlcfg

Reply via email to