<?php require 'function.php'; $picsStr = 'var aPics =['; $picsStr .= getDirFileName('../images'); $picsStr .= ',' . getDirFileName('../msnface'); $picsStr .= '];'; echo $picsStr;
function getDirFileName($dir) { $dh = opendir($dir); $i = 0; while ($file = readdir($dh)) { if ($file != "." && $file != "..") { $fullpath = $dir . "/" . $file; if (!is_dir($fullpath)) { echo "-->" . $file . "<br>"; } else { echo "<br><br>" . $file . "<br>"; $i = $i + 1; getDirFileName($fullpath); } } } return $i; }