當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Path::makeRelative方法代碼示例

本文整理匯總了PHP中Path::makeRelative方法的典型用法代碼示例。如果您正苦於以下問題:PHP Path::makeRelative方法的具體用法?PHP Path::makeRelative怎麽用?PHP Path::makeRelative使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Path的用法示例。


在下文中一共展示了Path::makeRelative方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: get_listings

 public static function get_listings()
 {
     $listings = array();
     $finder = new Finder();
     $files = $finder->files()->in(Config::getContentRoot())->name('fields.yaml')->followLinks();
     foreach ($files as $file) {
         $slug = Path::trimSlashes(Path::makeRelative($file->getPath(), Config::getContentRoot()));
         $meta = array('slug' => $slug, 'title' => ucwords(ltrim(Path::pretty('/' . $slug), '/')));
         $item = self::yamlize_content(BASE_PATH . '/' . $file->getPath() . '/page.' . Config::getContentType());
         $listings[] = is_array($item) ? array_merge($meta, $item) : $meta;
     }
     // Sort by Title
     uasort($listings, function ($a, $b) {
         return strcmp($a['title'], $b['title']);
     });
     return $listings;
 }
開發者ID:zane-insight,項目名稱:WhiteLaceInn,代碼行數:17,代碼來源:statamic.php

示例2: control_panel__move

 /**
  * Watch for moved content
  * 
  * @param array  $files  Array of old and new files
  * @return void
  */
 public function control_panel__move($files)
 {
     // master switch for revisions
     if (!$this->core->isEnabled()) {
         return;
     }
     // get files
     $old_file = $files['old_file'];
     $new_file = $files['new_file'];
     // normalize
     $old_file = rtrim(Path::makeRelative($old_file, Path::tidy(Config::getContentRoot())), '/');
     $old_file = $this->core->normalizePath($old_file);
     $new_file = rtrim(Path::makeRelative($new_file, Path::tidy(Config::getContentRoot())), '/');
     $new_file = $this->core->normalizePath($new_file);
     $this->core->moveFile($old_file, $new_file);
 }
開發者ID:andorpandor,項目名稱:git-deploy.eu2.frbit.com-yr-prototype,代碼行數:22,代碼來源:hooks.revisions.php


注:本文中的Path::makeRelative方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。