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


PHP Dir::getFullPath方法代码示例

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


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

示例1: rename

 function rename($new_name)
 {
     if (strstr($new_name, "/") !== false) {
         throw new InvalidParameterException("Il nome contiene caratteri non ammessi ( / )!!");
     }
     $parent_dir = $this->getParentDir();
     $target_path = $parent_dir->getPath() . "/" . $new_name;
     $target_dir = new Dir($target_path);
     if ($target_dir->exists()) {
         return false;
     }
     return rename($this->__full_path, $target_dir->getFullPath());
 }
开发者ID:mbcraft,项目名称:frozen,代码行数:13,代码来源:Dir.class.php

示例2: expandArchive

 public static function expandArchive($zip_file, $target_folder)
 {
     $zip_archive = new ZipArchive();
     if ($zip_file instanceof File) {
         $real_zip_file = $zip_file;
     } else {
         $real_zip_file = new File($zip_file);
     }
     if ($target_folder instanceof Dir) {
         $target_dir = $target_folder;
     } else {
         $target_dir = new Dir($target_folder);
     }
     $zip_archive->open($real_zip_file->getFullPath());
     $zip_archive->extractTo($target_dir->getFullPath());
     $zip_archive->close();
 }
开发者ID:mbcraft,项目名称:frozen,代码行数:17,代码来源:ZipUtils.class.php

示例3: rename

 /**
  * 
  * Renames this directory without moving it.
  * 
  * @param string $new_name The new name to assign to this folder.
  * @return boolean true if the operation was succesfull, false otherwise.
  * @throws \Mbcraft\Piol\IOException if the name contains invalid characters (path components).
  * 
  * @api
  */
 public function rename($new_name)
 {
     FileSystemUtils::checkValidFilename($new_name);
     $parent_dir = $this->getParentDir();
     $target_path = $parent_dir->getPath() . "/" . $new_name;
     $target_dir = new Dir($target_path);
     if ($target_dir->exists()) {
         return false;
     }
     return rename($this->__full_path, $target_dir->getFullPath());
 }
开发者ID:mbcraft,项目名称:piol,代码行数:21,代码来源:Dir.php


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