本文整理汇总了PHP中FileCache::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP FileCache::__construct方法的具体用法?PHP FileCache::__construct怎么用?PHP FileCache::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileCache
的用法示例。
在下文中一共展示了FileCache::__construct方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($name, $dir = false, $delimiter = '', $at_least = 0)
{
parent::__construct($name, $dir);
if (!empty($delimiter)) {
$this->delimiter = $delimiter;
}
$this->at_least = $at_least;
}
示例2: __construct
/**
* {@inheritdoc}
*/
public function __construct($directory, $extension = self::EXTENSION)
{
parent::__construct($directory, $extension);
}
示例3: __construct
/**
* @param $file string File to Store the Cache in
* @param $encryptionKey string Key to Encrypt File with
*/
public function __construct($file, $encryptionKey)
{
parent::__construct($file);
$this->encryptionKey = $encryptionKey;
}
示例4: __construct
/**
* {@inheritdoc}
*/
public function __construct($directory, $extension = self::EXTENSION, $umask = 02)
{
parent::__construct($directory, $extension, $umask);
}
示例5: __construct
/**
* {@inheritdoc}
*/
public function __construct($directory, $extension = self::EXTENSION, $umask = 02)
{
parent::__construct($directory, $extension, $umask);
self::$emptyErrorHandler = function () {
};
}