谁帮我看看这个函数是什么意思
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->function delFileUnderDir( $dirName ) { if ( $handle = opendir( "$dirName" ) ) { while ( false !==( $item = readdir( $handle ) ) ) { // if ( $item != "." && $item != ".." ) { if ( is_dir( "$dirName/$item" ) ) { delFileUnderDir( "$dirName/$item" ); } else { if( unlink( "$dirName/$item" ) )echo "成功删除文件: $dirName/$item<br>\n"; } } } closedir( $handle ); } }