ID: 37593 User updated by: gallard at mmic dot net Reported By: gallard at mmic dot net -Status: Feedback +Status: Open Bug Type: Arrays related Operating System: Linux Mandriva 2006 -PHP Version: 5.1.4 +PHP Version: 5.0.4 New Comment:
Supplementary note: The problem only happen in apache environment. There is no problem if executed in CLI mode. Previous Comments: ------------------------------------------------------------------------ [2006-05-30 09:58:57] [EMAIL PROTECTED] What if you try with this array? $x['aq']=1; $x['aw']=2; $x['aé']=3; $x['az']=4; And with a newer PHP version? ------------------------------------------------------------------------ [2006-05-25 21:48:46] gallard at mmic dot net Description: ------------ Problem seen in PHP5.0.4 extract() will not extract an array element if the key name contain an accented character. In the following example, the third element is not extracted. Reproduce code: --------------- $x['aa']=1; $x['ae']=2; $x['aé']=3; $x['af']=4; extract($x); print_r( get_defined_vars()); Expected result: ---------------- Array ( [x] => Array ( [aa] => 1 [ae] => 2 [aé] => 3 [af] => 4 ) [aa] => 1 [ae] => 2 [aé] => 3 [af] => 4 ) Actual result: -------------- Array ( [x] => Array ( [aa] => 1 [ae] => 2 [aé] => 3 [af] => 4 ) [aa] => 1 [ae] => 2 [af] => 4 ) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37593&edit=1