<?php/*** @link http://www.yiiframework.com/* @copyright Copyright (c) 2008 Yii Software LLC* @license http://www.yiiframework.com/license/*/namespace yii\caching;use Yii;use yii\base\InvalidConfigException;/*** FileDependency represents a dependency based on a file's last modification time.** If th last modification time of the file specified via [[fileName]] is changed,* the dependency is considered as changed.** @author Qiang Xue <qiang.xue@gmail.com>* @since 2.0*/class FileDependency extends Dependency{/*** @var string the file path or path alias whose last modification time is used to* check if the dependency has been changed.*/public $fileName;/*** Generates the data needed to determine if dependency has been changed.* This method returns the file's last modification time.* @param Cache $cache the cache component that is currently evaluating this dependency* @return mixed the data needed to determine if dependency has been changed.* @throws InvalidConfigException if [[fileName]] is not set*/protected function generateDependencyData($cache){if ($this->fileName === null) {throw new InvalidConfigException('FileDependency::fileName must be set');}return @filemtime(Yii::getAlias($this->fileName));}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。