PHP 遍历文件的解决办法
内容摘要
这篇文章主要为大家详细介绍了PHP 遍历文件的简单示例,具有一定的参考价值,可以用来参考一下。
文章正文
这篇文章主要为大家详细介绍了PHP 遍历文件的简单示例,具有一定的参考价值,可以用来参考一下。
代码如下:
1 2 3 4 5 6 7 8 9 10 11 | <code> function Files( $path ) { foreach (scandir( $path ) as $line ) { if ( $line == '.' || $line == '..' ) continue ; if ( is_dir ( $path . '/' . $line )) Files( $path . '/' . $line ); else echo '<li>' . $path . '/' . $line . '</li>' ; } } </code> |
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <code> <?php $dir = 'F:\\game' ; function read_dir_all( $dir ) { $ret = array ( 'dirs' => array (), 'files' => array ()); if ( $handle = opendir( $dir )) { while (false !== ( $file = readdir( $handle ))) { if ( $file != '.' && $file !== '..' ) { $cur_path = $dir . DIRECTORY_SEPARATOR . $file ; if ( is_dir ( $cur_path )) { $ret [ 'dirs' ][ $cur_path ] = read_dir_all( $cur_path ); } else { $ret [ 'files' ][] = $cur_path ; } } } closedir ( $handle ); } return $ret ; } $p = read_dir_all( $dir ); echo '<pre>' ; var_dump( $p ); echo '</pre>' ; ?> </code> |
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | <code> $path = './filepath' ; function getfiles( $path ) { if (! is_dir ( $path )) return ; $handle = opendir( $path ); while ( false !== ( $file = readdir( $handle ))) { if ( $file != '.' && $file != '..' ) { $path2 = $path . '/' . $file ; if ( is_dir ( $path2 )) { echo ' ' ; echo $file ; getfiles( $path2 ); } else { echo ' ' ; echo $file ; } } } } print_r( getfiles( $path )); echo '<HR>' ; function getdir( $path ) { if (! is_dir ( $path )) return ; $handle = dir( $path ); while ( $file = $handle ->read()) { if ( $file != '.' && $file != '..' ) { $path2 = $path . '/' . $file ; if ( is_dir ( $path2 )) { echo $file . "\t" ; getdir( $path2 ); } else { echo $file . ' ' ; } } } } getdir( $path ); echo '<HR>' ; function get_dir_scandir( $path ){ $tree = array (); foreach (scandir( $path ) as $single ){ if ( $single != '.' && $single != '..' ) { $path2 = $path . '/' . $single ; if ( is_dir ( $path2 )) { echo $single . "\r\n" ; get_dir_scandir( $path2 ); } else { echo $single . "\r\n" ; } } } } get_dir_scandir( $path ); echo ' <HR>'; function get_dir_glob(){ $tree = array (); foreach ( glob ( './curl/*' ) as $single ){ echo $single . "\r\n" ; } } get_dir_glob(); echo ' <HR>'; function myscandir( $path ) { if (! is_dir ( $path )) return ; foreach (scandir( $path ) as $file ) { if ( $file != '.' && $file != '..' ) { $path2 = $path . '/' . $file ; if ( is_dir ( $path2 )) { echo $file ; myscandir( $path2 ); } else { echo $file . ' ' ; } } } } myscandir( $path ); echo '<HR>' ; function myglob( $path ) { $path_pattern = $path . '/*' ; foreach ( glob ( $path_pattern ) as $file ) { if ( is_dir ( $file )) { echo $file ; myscandir( $file ); } else { echo $file . ' ' ; } } } myglob( $path ); </code> |
注:关于PHP 遍历文件的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释