GEARZ.de

All snippets are without any warranty.
Alle Snippets sind ohne jegliche Gewähr oder Garantie.



PHP: testForFileInDirectory   <back>

function testForFileInDirectory($path) {
	if ($dir = @opendir($path)) {
		while (($file = readdir($dir)) !== false) {
			if ($file!="." && $file!="..") {
				return true;
				closedir($dir);
				exit();
			}
		}
		return false;
	}
	closedir($dir);
}