Use
explode (string separator, string string [, int
limit])
something like
$my_file_info=explode(" ",$the_output_I_showed_you);
// explode string to array using spaces as separators
$my_file_info will be an array with the following data:
Array Index Data
0 -rw-r--r--
1 1
2 tazman
3 tazman
4 15263
5 Fri
6 Jan
7 11
8 21:53:24
9 2002
10 delphi60rc
Saludos
Gerardo Tasistro