Re: Appending into associative arrays

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

 



2007. 04. 15, vasárnap keltezéssel 21.20-kor Otto Wyss ezt írta:
> I want to sort directories according there modification time and thought 
> accociative arrays would be perfect. But when I add an element like
> 
> $dirs = array (filemtime($d) => $d)

why not simply

$dirs[] = array (filemtime($d) => $d);

greets
Zoltán Németh

> 
> the previous ones are lost. I tried array_push but that doesn't seems to 
> work, at least I always get syntax errors. Next try was 
> array_merge(array (...)). So what next?
> 
> O. Wyss
> 

-- 
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