_dir_file = FALSE; function well_search_dir($path) { global $g_dir_file; FALSE === $g_dir_file and $g_dir_file = array(); if (is_dir($path)) { $paths = scandir($path); foreach ($paths as $val) { $sub_path = $path . '/' . $val; if ('.' == $val || '..' == $val) { continue; } else if (is_dir($sub_path)) { well_search_dir($sub_path); } else { $g_dir_file[] = $sub_path; } } } return $g_dir_file; } ?>
ParseError: syntax error, unexpected end of file, expecting ')' in /www/wwwroot/roclinux.cn/tmp/model_session.func.php:299 Stack trace: #0 /www/wwwroot/roclinux.cn/index.php(28): include() #1 {main}