unset($A[2]);

-----Original Message-----
From: Decapode Azur [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 19, 2003 3:26 PM
To: [EMAIL PROTECTED]
Subject: [PHP] in the middle of shift and pop

is it possible to remove an element of an indexed array such as this
exemple
        $A = array('a', 'b', 'c', 'd', 'e', 'f');
in a way that we can optain this result :
        $A = array('a', 'b', 'd', 'e', 'f');

something like that perhaps ?
array_remove($A, 2);

If such a function does not exists, what would be the more efficient way
to 
do so a lot of time on very big arrays ?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to