CFileCacheDependency
优质
小牛编辑
136浏览
2023-12-01
所有包 | 属性 | 方法
CFileCacheDependency指基于一个文件最后修改时间的依赖项。
CFileCacheDependency基于文件最后修改时间执行依赖项检查, 该文件通过fileName指定。 当且仅当该文件的最后修改时间没改变时 认为依赖项没改变。
源码: framework/caching/dependencies/CFileCacheDependency.php#36 (显示)
源码: framework/caching/dependencies/CFileCacheDependency.php#46 (显示)
包 | system.caching.dependencies |
---|---|
继承 | class CFileCacheDependency » CCacheDependency » CComponent |
实现 | ICacheDependency |
源自 | 1.0 |
版本 | $Id: CFileCacheDependency.php 2799 2011-01-01 19:31:13Z qiang.xue $ |
源码 | framework/caching/dependencies/CFileCacheDependency.php |
CFileCacheDependency基于文件最后修改时间执行依赖项检查, 该文件通过fileName指定。 当且仅当该文件的最后修改时间没改变时 认为依赖项没改变。
公共属性
隐藏继承属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
dependentData | mixed | 用以决定依赖项是否被改变的数据。 这些数据是可用的在evaluateDependency被调用后。 | CCacheDependency |
fileName | string | 文件名,它的最后修改时间用来 决定依赖项是否被改变。 | CFileCacheDependency |
hasChanged | boolean | 依赖项是否被改变。 | CCacheDependency |
公共方法
隐藏继承方法
方法 | 描述 | 定义在 |
---|---|---|
__call() | 如果类中没有调的方法名,则调用这个方法。 | CComponent |
__construct() | 构造器。 | CFileCacheDependency |
__get() | 返回一个属性值、一个事件处理程序列表或一个行为名称。 | CComponent |
__isset() | 检查一个属性是否为null。 | CComponent |
__set() | 设置一个组件的属性值。 | CComponent |
__unset() | 设置一个组件的属性为null。 | CComponent |
asa() | 返回这个名字的行为对象。 | CComponent |
attachBehavior() | 附加一个行为到组件。 | CComponent |
attachBehaviors() | 附加一个行为列表到组件。 | CComponent |
attachEventHandler() | 为事件附加一个事件处理程序。 | CComponent |
canGetProperty() | 确定属性是否可读。 | CComponent |
canSetProperty() | 确定属性是否可写。 | CComponent |
detachBehavior() | 从组件中分离一个行为。 | CComponent |
detachBehaviors() | 从组件中分离所有行为。 | CComponent |
detachEventHandler() | 分离一个存在的事件处理程序。 | CComponent |
disableBehavior() | 禁用一个附加行为。 | CComponent |
disableBehaviors() | 禁用组件附加的所有行为。 | CComponent |
enableBehavior() | 启用一个附加行为。 | CComponent |
enableBehaviors() | 启用组件附加的所有行为。 | CComponent |
evaluateDependency() | 根据依赖关系来生存和保存数据以计算依赖项。 | CCacheDependency |
evaluateExpression() | 计算一个PHP表达式,或根据组件上下文执行回调。 | CComponent |
getDependentData() | 返回用以决定依赖项是否被改变的数据。 这些数据是可用的在evaluateDependency被调用后。 | CCacheDependency |
getEventHandlers() | 返回一个事件的附加处理程序列表。 | CComponent |
getHasChanged() | 返回依赖项是否被改变。 | CCacheDependency |
hasEvent() | 确定一个事件是否定义。 | CComponent |
hasEventHandler() | 检查事件是否有附加的处理程序。 | CComponent |
hasProperty() | 确定属性是否被定义。 | CComponent |
raiseEvent() | 发起一个事件。 | CComponent |
受保护方法
隐藏继承方法
方法 | 描述 | 定义在 |
---|---|---|
generateDependentData() | 生成决定依赖项是否被改变需要的数据。 | CFileCacheDependency |
属性详细
fileName 属性 public string $fileName;文件名,它的最后修改时间用来 决定依赖项是否被改变。
方法详细
__construct() 方法public void __construct(string $fileName=NULL) | ||
$fileName | string | 文件名,它的改变会被检查。 |
publicfunction__construct($fileName=null)
{
$this->fileName=$fileName;
}
构造器。
generateDependentData() 方法protected mixed generateDependentData() | ||
{return} | mixed | 决定依赖项是否被改变需要的数据。 |
protectedfunctiongenerateDependentData()
{
if($this->fileName!==null)
return@filemtime($this->fileName);
else
thrownewCException(Yii::t('yii','CFileCacheDependency.fileNamecannotbeempty.'));
}
生成决定依赖项是否被改变需要的数据。 该方法返回文件的最后修改时间。