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


PHP dir::cache方法代碼示例

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


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

示例1: write

 public static function write($content, $id, $type = 'article')
 {
     $file = self::getFileName($id, $type);
     if (!file_put_contents(dir::cache(self::FOLDER . DIRECTORY_SEPARATOR . $file), $content, LOCK_EX)) {
         return false;
     }
     return true;
 }
開發者ID:pasterntt,項目名稱:dynao-CMS,代碼行數:8,代碼來源:cache.php

示例2: clear

 public static function clear($folder = '')
 {
     if ($dir = opendir(dir::cache($folder))) {
         while (($file = readdir($dir)) !== false) {
             if (is_file($file)) {
                 self::deleteFile($file);
             }
         }
         closedir($dir);
     }
 }
開發者ID:DINKIN,項目名稱:rokket,代碼行數:11,代碼來源:cache.php

示例3: stripPath

<?php

$error = false;
$table = table::factory();
$table->addRow()->addCell(lang::get('type'))->addCell(lang::get('value'))->addCell(lang::get('status'));
$table->addSection('tbody');
$table->addRow()->addCell(lang::get('php_version'))->addCell('>5.4');
if (version_compare(phpversion(), '5.4', '<')) {
    $table->addCell('<span class="label label-danger">' . lang::get('php_version_54') . '</span>');
} else {
    $table->addCell('<span class="label label-success">' . lang::get('ok') . '</span>');
}
$writeable = [dir::cache(), dir::backend('addons' . DIRECTORY_SEPARATOR), dir::backend('lib' . DIRECTORY_SEPARATOR . 'config.json')];
function stripPath($file)
{
    return str_replace(dir::base(), '', $file);
}
foreach ($writeable as $file) {
    $table->addRow()->addCell(stripPath($file))->addCell('0755');
    if (is_file($file)) {
        if (is_writeable($file)) {
            $table->addCell('<span class="label label-success">' . lang::get('ok') . '</span>');
        } else {
            $table->addCell('<span class="label label-danger">' . lang::get('chmod_755') . '</span>');
            $error = true;
        }
    } elseif (is_dir($file)) {
        if (is_writeable($file)) {
            $table->addCell('<span class="label label-success">' . lang::get('ok') . '</span>');
        } else {
            $table->addCell('<span class="label label-danger">' . lang::get('chmod_755') . '</span>');
開發者ID:pasternt,項目名稱:dynaoCMS,代碼行數:31,代碼來源:general.php


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