PHP;">
function get_all_files( $path ){
$list = array();
foreach( glob( $path . '/*') as $item ){
if( is_dir( $item ) ){
$list = array_merge( $list,get_all_files( $item ) );
}
else{
$list[] = $item;
}
}
return $list;
}
PHP;">
function get_my_files( $path ){
$list = array();
foreach( glob( $path . '/*') as $item ){
if( is_dir( $item ) ){
$list[] = $item;
}
}
return $list;
}
PHP;">
function get_all_files_time( $path ){
clearstatcache();
$list = array();
foreach( glob( $path . '/*') as $item ){
if( is_dir( $item ) ){
$list = array_merge( $list,get_all_files_time( $item ) );
}
else{
$list[$item] = ftime(fileatime($item)); //fileatime 访问时间 fileatime 访问时间 filemtime 修改时间
}
}
return $list;
}
PHP;">
function get_all_files_mtime( $path ){
clearstatcache();
$list = array();
原文链接:https://www.f2er.com/php/17840.htmlforeach( glob( $path . '/*') as $item ){
if( is_dir( $item ) ){
$list = array_merge( $list,get_all_files_mtime( $item ) );
}
else{
$list[$item] = ftime(filemtime($item)); //fileatime 访问时间 fileatime 访问时间 filemtime 修改时间
}
}
return $list;
}