8

运行时,我收到关于timezonesphpunit --coverage-html的众所周知的警告。

PHP 警告:date():依赖系统的时区设置是不安全的。您需要使用 date.timezone 设置或 date_default_timezone_set() 函数。如果您使用了这些方法中的任何一种,但仍然收到此警告,您很可能拼错了时区标识符。我们现在选择时区“UTC”,但请设置 date.timezone 以选择您的时区。

一切都按预期工作,但它变得非常烦人。

当然,我可以通过更改 my 来解决这个问题php.ini,但如果可能的话,我宁愿避免它,以保持一些server-agnosticism。此外,如果由我的可测试代码触发,我不想阻止出现此警告。

有没有办法为内部 PHPUnit 操作定义默认时区?

4

1 回答 1

12

我在 bootstrap.php 文件中设置了 TimeZone。

<?php
// PHP and Web server settings
error_reporting(E_ALL | E_STRICT);
date_default_timezone_set("America/Toronto");       // Set the default timezone
$_SERVER['SERVER_NAME'] = 'http://myserver';       // Set Web Server name

// Process the Include Path to allow the additional application to be set.
$IncludePaths = explode( PATH_SEPARATOR, get_include_path() );
$NewIncludePaths = array_merge( $IncludePaths, array(dirname(__FILE__) ));
set_include_path( implode( PATH_SEPARATOR, array_unique($NewIncludePaths)));    // Update Include Path

//define('PHPUNIT_RUNNING', 1); // Indicate to the code that Automated Testing is running.
?>
于 2013-09-05T18:24:34.037 回答