[PHP] Re: Associative to Numeric

2003-08-14 Thread Greg Beaver
$num = array_values($assoc); Regards, Greg -- phpDocumentor http://www.phpdoc.org Gerard Samuel wrote: What would be the quickest, most reliable means to convert an associative array to a numeric array. Running an implode()/explode() combination comes to mind, but reliablity can be questioned wh

[PHP] Re: Associative to Numeric

2003-08-14 Thread Gerard Samuel
Excellent. Thanks. Greg Beaver wrote: $num = array_values($assoc); Regards, Greg -- phpDocumentor http://www.phpdoc.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php