当前位置: 首页>>代码示例>>PHP>>正文


PHP Listing::ls_dir方法代码示例

本文整理汇总了PHP中Listing::ls_dir方法的典型用法代码示例。如果您正苦于以下问题:PHP Listing::ls_dir方法的具体用法?PHP Listing::ls_dir怎么用?PHP Listing::ls_dir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Listing的用法示例。


在下文中一共展示了Listing::ls_dir方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: ls_dir

 public function ls_dir($dir, $recurse)
 {
     $index = Listing::get_dir_contents($dir);
     $return_str = "<div id=\"browser-div-sub\">";
     if (count($index['directories']) > 0) {
         $no_contents = false;
         $return = "";
         foreach ($index['directories'] as $f) {
             //if(!$recurse) $return_str .= Listing::dir_listing($f['file.name'], $f['path.hash']);
             $return_str .= Listing::dir_listing($f['file.name'], $f['path.hash']);
             if ($recurse) {
                 $return_str .= Listing::ls_dir($f['path'], true);
             }
         }
     }
     $return_str .= "<hr />\n";
     if (count($index['files']) > 0) {
         $no_contents = false;
         foreach ($index['files'] as $f) {
             $return_str .= Listing::file_listing($f['path.hash'], $f['file.name']);
         }
         $return_str .= "<div>...</div><hr />\n";
     }
     $return_str .= "</div>";
     return $return_str;
 }
开发者ID:rtownsend,项目名称:pitchfork,代码行数:26,代码来源:pitchfork-class-listing.php

示例2: page

if ($mask != $Cfg_FolderLoc) {
    $index_UI->previous_href = "pitchfork-application-index.php?mask=" . $context['previous_dir'];
} else {
    $index_UI->previous_href = "pitchfork-application-index.php";
}
# Set a title for this page (that will appear in the browser window title and on the page)
if ($hash == $Cfg_FolderLoc) {
    $index_UI->set_page_title("Index of all files");
} else {
    $index_UI->set_page_title("Index of " . end(explode('/', $mask)));
}
# Detect the browser and see if they can be trusted with the javascript
//if(strpos($browser,"MSIE 6.0")==true){}
//else {$index_UI -> include_js("pitchfork-quicktime-playback.js");}
# Include the page header that contains all the DOCTYPES / javascript / stylesheet
$index_UI->load_header();
$dir_result = $list->ls_dir($mask, $recurse);
if ($list->directory_empty) {
    $index_UI->load("directory-empty");
} else {
    $index_UI->load('index');
    $index_UI->append("<div id=\"browser-div\">");
    $index_UI->append($dir_result);
    $index_UI->append("</div>");
}
# This closes everything up and includes the navigation elements.
$index_UI->load_footer();
# Return the User interface...
$index_UI->return_UI();
//print_r($_SESSION);
# Part of Pitchfork.
开发者ID:rtownsend,项目名称:pitchfork,代码行数:31,代码来源:pitchfork-application-index.php


注:本文中的Listing::ls_dir方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。