|
Posted by roN on 09/26/05 06:50
Hi,
I'm reading out some files from a directory with:
$handle=OpenDir (PicDir); /* Verzeichnis �fnen und ein handle
erstellen welches daraufzeigt */
$PicArray=array(); /* Array erstellen, in welchem sp�er die Bilddaten
gespeichert werden */
while($tmpPic=readdir ($handle)) /* schleife durchlaufen, bis alle Dateien
durch sind */
{
if (FileExt_Check("jpg",$tmpPic)) /* berprfen ob die File-Extension *.jpg
ist...*/
{
array_push($PicArray,$tmpPic); /* Dateinamen des Bildes in Array
kopieren */
}
}
In what order are they read out? I'm not able to figure it out. Am I able to
modify it anyway?
Thank you!
--
chEErs roN
I'm root, I'm allowed to do this! ;)
keep on rockin'
[Back to original message]
|