Re: [PHP] Associative to Numeric

2003-08-14 Thread olinux
http://www.php.net/array_values http://www.php.net/array_keys --- Gerard Samuel <[EMAIL PROTECTED]> 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

[PHP] Associative to Numeric

2003-08-11 Thread Gerard Samuel
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 when it comes to deciding a delimiter, since, the data can possibly contain any character. Any suggestions