mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
12 lines
270 B
PHP
12 lines
270 B
PHP
--TEST--
|
|
date_default_timezone_get() function [4]
|
|
--INI--
|
|
date.timezone=Incorrect/Zone
|
|
--FILE--
|
|
<?php
|
|
echo date_default_timezone_get(), "\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: PHP Startup: Invalid date.timezone value 'Incorrect/Zone', using 'UTC' instead in %s on line %d
|
|
UTC
|