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


PHP f::exists方法代碼示例

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


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

示例1: sync

 /**
  * Resets store if necessary to stay in sync with content file
  */
 public function sync()
 {
     $file = $this->structure->model()->textfile();
     $ageModel = f::exists($file) ? f::modified($file) : 0;
     $ageStore = s::get($this->id() . '_age');
     if ($ageStore < $ageModel) {
         $this->reset();
         $this->age = $ageModel;
     } else {
         $this->age = $ageStore;
     }
 }
開發者ID:nsteiner,項目名稱:kdoc,代碼行數:15,代碼來源:store.php

示例2: check_cache

 public function check_cache($type)
 {
     $cache_path = __DIR__ . '/../cache/' . $type . '.json';
     if (\f::exists($cache_path)) {
         $cache = json_decode(\f::read($cache_path, 'json'));
         if ($cache->to < time()) {
             return false;
         } else {
             return $cache->payload;
         }
     } else {
         return false;
     }
 }
開發者ID:sethmcleod,項目名稱:patsymcenroe.com,代碼行數:14,代碼來源:Instagram.php

示例3: size

/**
 * Determines the size/length of numbers, strings, arrays and files
 *
 * @param mixed $value
 * @return int
 */
function size($value)
{
    if (is_numeric($value)) {
        return $value;
    }
    if (is_string($value)) {
        return str::length(trim($value));
    }
    if (is_array($value)) {
        return count($value);
    }
    if (f::exists($value)) {
        return f::size($value) / 1024;
    }
}
開發者ID:muten84,項目名稱:luigibifulco.it,代碼行數:21,代碼來源:helpers.php

示例4: isUserAlreadyInSession

 public function isUserAlreadyInSession()
 {
     //get full path to user's results' file (if any) in results folder
     $userResultsFile = $this->resultsFolderPath . DS . $this->username . '.' . c::get('results.file.ext');
     //if usre's file exists
     if (f::exists($userResultsFile)) {
         //add error: the username is already present in the session
         $this->addError('session.fail.email.alreadyUsed');
         //return true
         return true;
     }
     //return false
     return false;
 }
開發者ID:alkaest2002,項目名稱:risky2,代碼行數:14,代碼來源:testSession.php

示例5: resizeOnDemandDeleteDir

function resizeOnDemandDeleteDir($pageId)
{
    $path = str_replace('/', DS, $pageId);
    $root = kirby()->roots()->index() . DS . 'thumbs' . DS . $path;
    // delete directory with resized images
    if (f::exists($root)) {
        dir::remove($root, false);
    }
}
開發者ID:aoimedia,項目名稱:kirby-resize-on-demand-plugin,代碼行數:9,代碼來源:resizeOnDemand.php

示例6: testExists

 public function testExists()
 {
     $this->assertTrue(f::exists($this->contentFile));
 }
開發者ID:aoimedia,項目名稱:kosmonautensofa,代碼行數:4,代碼來源:FTest.php


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