當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。