mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02: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
|