date() It is not safe to rely on the system's timezone settings
- jan.kocis
- Člen | 3
zdravím,
# Nette version = 0.9.4 ae0c8bd released on 2010–04–14
nějak jsem se zamotal do nastavení config.ini. Když si chcu v laděnce strictMode, tak mi všude u fce date() vrací např. date() [<a href=‚function.date‘>function.date</a>]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected ‚Europe/Berlin‘ for ‚CEST/2.0/DST‘ instead
při Environment::loadConfig(‚./config.ini‘) chyba zůstává
při použití $config = Config::fromFile(‚./config.ini‘) a
Config::loadConfig($config) vrací Call to undefined method
Config::loadconfig()
<?php
include_once "./lib/Nette/loader.php";
Debug::enable(); // ladenka
//Environment::loadConfig('./config.ini');
$config = Config::fromFile('./config.ini');
//Environment::getVariables();
//Config::loadConfig($config);
Debug::enable(Debug::DEVELOPMENT);
Debug::enableProfiler();
Debug::$strictMode = TRUE;
?>
//date_default_timezone_set(‚Europe/Prague‘); // toto to vyřeší, ale přecijenom bych chtěl deklarovat psostředí resp. používat strictMode
Děkuji JK