当前位置: 首页>>代码示例>>PHP>>正文


PHP Check::file方法代码示例

本文整理汇总了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;
 }
开发者ID:wikidi,项目名称:envtesting,代码行数:18,代码来源:Suite.php

示例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;
 }
开发者ID:roggeo,项目名称:glance,代码行数:13,代码来源:Theme.php


注:本文中的Check::file方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。