本文整理汇总了PHP中Check::file方法的典型用法代码示例。如果您正苦于以下问题:PHP Check::file方法的具体用法?PHP Check::file怎么用?PHP Check::file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Check
的用法示例。
在下文中一共展示了Check::file方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addTest
/**
* Add new callback test to suit
*
* @param string $name
* @param mixed|callable|filepath $callback
* @param null $type
* @return Test
*/
public function addTest($name, $callback, $type = null)
{
if (is_string($callback) && (is_file(__DIR__ . $callback) || is_file($callback))) {
$callback = Check::file(basename($callback), dirname($callback));
}
// create new Test instance
$test = new Test($name, $callback, $type);
$test->enable($this->filter->isValid($test, $this));
return $this->groups[$this->getCurrentGroupName()][] = $test;
}
示例2: enqueueFiles
/**
*
* @param mixed $file name file or array of names of files
* @param string $folder of files
* @param mixed $extension of file or array with several extensions
* @return string|array
*/
protected function enqueueFiles($file, $folder, $extension = null)
{
$this->destroySecondaryTheme();
$enqueue = Check::file($file, $folder, $extension);
return $enqueue;
}