Lines Matching refs:found
11 * you error log. In most cases this would mean you found an error
67 while (($found = @readdir($dir)) !== false) {
68 $type = @filetype($root.$path.'/'.$found);
69 //error_log("search_file($root$path):$type=$found",0);
72 $pos = strrpos($found,'.');
74 $type = exif_imagetype($root.$path.'/'.$found);
77 $type = GetImageSize($root.$path.'/'.$found);
87 $possible[] = array('file'=>$root.$path.'/'.$found, 'type'=>$type);
88 //error_log("search_file($root$path) add:$path/$found",0);
95 if ( $found!='.' && $found!='..') {
96 $sub[count($sub)] = $found;
102 foreach( $sub as $idx => $found) {
103 _search_file($root,$possible,$path.'/'.$found);