Posted by Steve on 08/24/07 01:37
"Kyote" <kyote_love@nospamhotmail.com> wrote in message
news:96csc3tplg3md00t969hu45f74dt6bb80u@4ax.com...
|
| >$books = array();
| >foreach ($files as $value) {
| > $c = substr($value,0,1);
| > if (!is_array($books[$c]))
| > $books[$c] = array();
| > $books[$c][] = $value;
| >}
|
| Thank you very much Jerry. This seems to work exactly as I need.
jerry's got it...but just a tid-bit of fun...
a string is an array of characters. so, $c could easily be set by:
$c = $value[0];
Navigation:
[Reply to this message]
|