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


PHP file::get_folder_path方法代码示例

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


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

示例1: get_version

 static function get_version()
 {
     if (file::get_folder_path('framework') === false) {
         return;
     }
     return @file_get_contents(get_file('framework', 'VERSION')->get_path());
 }
开发者ID:laiello,项目名称:phpbf,代码行数:7,代码来源:class.common.php

示例2: get_write_path

 public function get_write_path()
 {
     $folder_path = file::get_folder_path($this->folder);
     if ($folder_path === false) {
         common::error("Unknown folder ID: " . $this->folder);
     }
     $relative = $path[0] != '/' && strpos($path, ':') === false;
     return ($relative ? PATH_TO_ROOT_WRITE : '') . $folder_path . $this->name;
 }
开发者ID:laiello,项目名称:phpbf,代码行数:9,代码来源:class.file.php

示例3: directories

 static function directories()
 {
     if (!config::config_exists()) {
         return array();
     }
     $return = array();
     foreach (config::search('/^folder_/') as $id => $path) {
         $id = substr($id, 7);
         $return[$id] = array("path" => $path);
         $return[$id]["write_required"] = $id == 'data' || $id == 'compiled' || $id == 'cached' || $id == 'dcss_compiled' || $id == 'form_compiled';
         $return[$id]["exists"] = file::get_folder_path($id) !== false && @is_dir(get_file($id, '')->get_path());
         $return[$id]["writable"] = @is_writable(get_file($id, '')->get_path());
         $return[$id]["updatable"] = @is_writable(get_file($id, '')->get_write_path());
     }
     return $return;
 }
开发者ID:laiello,项目名称:phpbf,代码行数:16,代码来源:class.test.php


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