Array references - how to unset() ?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



$ARR = array(
 'a' => array('b' => 'blah')
);


function set($key)
{
   global $ARR;

   foreach ($key as $i => $k) {
        if ($i == 0) {
               $sourcevar =& $ARR[$k];
           } else {
               $sourcevar =& $sourcevar[$k];
           }
       }

// unset($sourcevar); // will cancel the reference - we want to unset the ['b'], but how?

$sourcevar = null; // will set it NULL, but won't unset...


foreach ($ARR ... // I could run a cleanup, that would go through all of the array and unset what is NULL, but I would need to use REFERENCES again!! array_walk_recursive() is also worthless... any ideas?


}

set( array('a', 'b') );





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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux