ID:               41836
 Updated by:       [EMAIL PROTECTED]
 Reported By:      lubbers_corrado at yahoo dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         Unknown/Other Function
 Operating System: Windows XP SP2
 PHP Version:      5.2.3
 New Comment:

Cannot reproduce.


Previous Comments:
------------------------------------------------------------------------

[2007-06-28 08:13:26] lubbers_corrado at yahoo dot com

Description:
------------
When trying to fill an _empty_ array by using array_pad with negative
direction, the last element will be padded but stays empty

When the source Array has at least one element, this error does not
occur

Reproduce code:
---------------
$foo = array();
$foo = array_pad($foo,-2,"bar");
echo print_r($foo,true);


Expected result:
----------------
Array ( [0] => bar [1] => bar );

Actual result:
--------------
Array ( [0] => bar [1] => );


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=41836&edit=1

Reply via email to