本文整理汇总了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;
}
示例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);
}
}
示例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>');