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


PHP Fuel::is_test方法代码示例

本文整理汇总了PHP中Fuel::is_test方法的典型用法代码示例。如果您正苦于以下问题:PHP Fuel::is_test方法的具体用法?PHP Fuel::is_test怎么用?PHP Fuel::is_test使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Fuel的用法示例。


在下文中一共展示了Fuel::is_test方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: rtrim

/**
 * Set error reporting and display errors settings.  You will want to change these when in production.
 */
error_reporting(E_ALL);
ini_set('display_errors', 1);
$app_path = rtrim($_SERVER['app_path'], '/') . '/';
$package_path = rtrim($_SERVER['package_path'], '/') . '/';
$vendor_path = rtrim($_SERVER['vendor_path'], '/') . '/';
$core_path = rtrim($_SERVER['core_path'], '/') . '/';
/**
 * Website docroot
 */
define('DOCROOT', realpath(__DIR__ . DIRECTORY_SEPARATOR . $_SERVER['doc_root']) . DIRECTORY_SEPARATOR);
!is_dir($app_path) and is_dir(DOCROOT . $app_path) and $app_path = DOCROOT . $app_path;
!is_dir($core_path) and is_dir(DOCROOT . $core_path) and $core_path = DOCROOT . $core_path;
!is_dir($vendor_path) and is_dir(DOCROOT . $vendor_path) and $vendor_path = DOCROOT . $vendor_path;
!is_dir($package_path) and is_dir(DOCROOT . $package_path) and $package_path = DOCROOT . $package_path;
define('APPPATH', realpath($app_path) . DIRECTORY_SEPARATOR);
define('PKGPATH', realpath($package_path) . DIRECTORY_SEPARATOR);
define('VENDORPATH', realpath($vendor_path) . DIRECTORY_SEPARATOR);
define('COREPATH', realpath($core_path) . DIRECTORY_SEPARATOR);
unset($app_path, $core_path, $package_path, $_SERVER['app_path'], $_SERVER['core_path'], $_SERVER['package_path']);
// Get the start time and memory for use later
defined('FUEL_START_TIME') or define('FUEL_START_TIME', microtime(true));
defined('FUEL_START_MEM') or define('FUEL_START_MEM', memory_get_usage());
// Boot the app
require_once APPPATH . 'bootstrap.php';
// Set test mode
Fuel::$is_test = true;
// Import the TestCase class
import('testcase');
开发者ID:marietta-adachi,项目名称:website,代码行数:31,代码来源:bootstrap_phpunit.php


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