3v4l.org

run code in 300+ PHP versions simultaneously
<?php //$connection = mysql_connect('localhost', 'root','abcABC123'); //mysql_select_db('pearson', $connection); //ini_set('date.timezone', 'US/Eastern'); //date_default_timezone_set('Europe/London'); echo "PHP INI SETTING : " . ini_get('date.timezone') . "</br>"; echo "Current timezone: " . date_default_timezone_get() . "</br>"; $date = new DateTime(); var_dump(new DateTime()); echo "</br>------------------------------------ DateTime Constants -------------------------------------------------</br>"; echo "DATE_ATOM - " . $date->format(DATE_ATOM) . "</br>" ; echo "DATE_ISO8601 - " . $date->format(DATE_ISO8601) . "</br>" ; echo "DATE_RFC822 - " . $date->format(DATE_RFC822) . "</br>" ; echo "DATE_RSS - " . $date->format(DATE_RSS) . "</br>" ; echo "</br>-------------------------------------- Operation with Date -----------------------------------------------</br>"; echo "Offset to GMT - " . $date->getOffset() . "</br>" ; echo "Date modify - " . $date->modify('+2 week')->format(DATE_RSS) . "</br>" ; echo "</br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>"; echo "http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>" ; echo "Timestamp - " . $date->getTimestamp(). "</br>" ; $timeZone = new DateTimeZone("Europe/Moscow"); $date->setTimezone($timeZone); //var_dump($timeZone->getTransitions()); //var_dump(timezone_identifiers_list()); var_dump($date); echo "Timezone offset to GMT - " . $timeZone->getOffset(new DateTime()) . "</br>" ; echo "</br>-------------------------------------- MYSQL -----------------------------------------------</br>" ; $sql = "INSERT INTO date_date(my_timestamp, datetime) VALUES(\"". CURRENT_TIMESTAMP . "\",\"" . $date->format("d-m-y H:i:s") . "\")"; echo $sql . "</br>"; mysql_query($sql); $result = mysql_query('SELECT datetime FROM date_date'); while ($row = mysql_fetch_assoc($result)) { $userTimeZone = new DateTimeZone('Europe/Oslo'); if (!empty($row["datetime"])) { $dt = new DateTime($row["datetime"]); $dt->setTimezone($userTimeZone); echo "</br>" . $dt->format("r") . "</br>"; } } echo "</br>-------------------------------------- Prooof links-----------------------------------------------</br>" ; echo "http://www.worldtimezone.com/index24.php </br>" ; echo "http://www.sitepoint.com/forums/showthread.php?450107-Difference-between-GMT-and-PST#post3243632</br>" ;
Output for 8.3.4
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008658" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008651" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.3.3
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.010488" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.010481" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.3.2
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004012" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004009" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.3.1
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004176" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004173" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.3.0
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003862" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003859" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.17
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.007169" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.007156" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.16
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.006898" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.006892" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.15
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004095" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004090" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.14
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003865" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003862" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.13
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003801" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003799" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.12
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003555" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003550" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.11
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004459" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004456" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.10
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.005504" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.005495" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.9
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003993" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.8
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004066" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004059" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.7
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003873" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003867" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004108" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004101" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.5
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003794" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003789" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.4
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004106" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004099" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.3
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004082" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004079" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.2
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004102" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004096" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.1
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004156" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004150" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.2.0
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004011" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004003" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.27
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004187" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004184" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.26
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003780" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003776" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.25
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003743" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003739" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.24
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004431" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004424" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.23
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.005127" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.005124" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.22
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003903" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003897" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.21
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003852" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003846" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.20
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003980" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003974" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.19
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003882" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003875" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.18
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003908" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003902" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.17
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003680" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003674" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.16
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004014" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004008" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.15
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003832" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003826" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.14
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003745" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003739" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.13
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003290" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003284" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.12
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.005234" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.005225" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.11
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003593" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003587" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.10
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003689" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003681" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.9
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003661" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003655" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.8
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003652" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003646" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.7
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003358" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003352" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004148" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004141" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.5
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003732" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003723" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.4
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004238" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004232" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.3
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003651" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003644" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.2
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003768" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003760" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.1
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004187" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004179" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.1.0
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.006279" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.006272" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.30
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003468" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003463" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.29
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003540" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003535" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.28
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003574" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003569" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.27
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.005088" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.005082" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.26
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003197" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003192" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.25
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003573" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003566" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.24
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003497" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003490" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.23
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003605" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003598" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.11, 8.0.22
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003423" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003415" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.21
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003392" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003382" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.20
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003090" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003083" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.19
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003781" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003773" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.18
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003493" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003482" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.17
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003437" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003428" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.16
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003390" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003379" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.15
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003381" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003371" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.14
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003978" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003967" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.13
PHP INI SETTING : </br>Current timezone: UTC</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 09:53:48.002316" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T09:53:48+00:00</br>DATE_ISO8601 - 2014-12-17T09:53:48+0000</br>DATE_RFC822 - Wed, 17 Dec 14 09:53:48 +0000</br>DATE_RSS - Wed, 17 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 0</br>Date modify - Wed, 31 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.002308" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.12
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003544" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003536" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.10
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003442" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003432" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.9
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003581" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003570" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.8
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008267" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008249" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.7
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003465" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003456" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004276" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004267" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.5
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003950" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003943" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.3
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009391" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009335" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.2
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009854" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009836" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.1
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004568" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004557" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 8.0.0
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.013612" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.013586" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Fatal error: Uncaught Error: Undefined constant "CURRENT_TIMESTAMP" in /in/RGLEh:40 Stack trace: #0 {main} thrown in /in/RGLEh on line 40
Process exited with code 255.
Output for 7.4.33
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.001918" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.001914" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.32
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003024" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003015" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.30
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003326" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003318" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.29
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003231" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003223" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.28
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003308" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003298" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.27
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003457" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003447" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.26
PHP INI SETTING : </br>Current timezone: UTC</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 09:53:48.002032" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T09:53:48+00:00</br>DATE_ISO8601 - 2014-12-17T09:53:48+0000</br>DATE_RFC822 - Wed, 17 Dec 14 09:53:48 +0000</br>DATE_RSS - Wed, 17 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 0</br>Date modify - Wed, 31 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.002024" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.25
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003670" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003661" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.24
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003618" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003607" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.23
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003206" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003198" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.22
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008867" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008847" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.21
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.007568" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.007552" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.20
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003267" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003259" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.19
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003306" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003297" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.16
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009137" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009118" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.15
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.012153" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.012102" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.14
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.010652" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.010639" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.13
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.011351" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.011333" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.12
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.011135" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.011116" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.11
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008719" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008701" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.10
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008837" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008820" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.9
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009092" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009079" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.8
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.010789" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.010736" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.7
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.012249" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.012231" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.000525" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.000506" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.5
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.002431" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.002422" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.4
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003282" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003270" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.3
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.013068" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.013053" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.4.0
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.000463" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.000453" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.33
PHP INI SETTING : </br>Current timezone: UTC</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 09:53:48.002085" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T09:53:48+00:00</br>DATE_ISO8601 - 2014-12-17T09:53:48+0000</br>DATE_RFC822 - Wed, 17 Dec 14 09:53:48 +0000</br>DATE_RSS - Wed, 17 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 0</br>Date modify - Wed, 31 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.002080" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.32
PHP INI SETTING : </br>Current timezone: UTC</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 09:53:48.002594" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T09:53:48+00:00</br>DATE_ISO8601 - 2014-12-17T09:53:48+0000</br>DATE_RFC822 - Wed, 17 Dec 14 09:53:48 +0000</br>DATE_RSS - Wed, 17 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 0</br>Date modify - Wed, 31 Dec 2014 09:53:48 +0000</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.002589" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.31
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.003602" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.003597" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.30
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004070" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004064" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.29
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.007190" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.007181" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.28
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.007945" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.007935" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.27
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008880" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008870" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.26
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.011933" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.011875" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.25
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.013915" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.013903" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.24
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008628" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008617" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.23
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009414" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009402" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.21
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008996" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008984" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.20
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009699" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009687" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.19
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.012234" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.012181" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.18
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004801" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004788" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.17
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009009" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008998" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.16
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008672" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008636" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.3.12
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.000267" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.000261" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.2.33
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009211" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009193" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.2.32
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.011991" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.011969" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.2.31
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009630" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009611" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.2.30
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.008641" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.008622" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.2.29
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009578" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009558" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.2.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.002480" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.002469" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.2.0
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004176" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004163" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Warning: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' (this will throw an Error in a future version of PHP) in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.1.20
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004389" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004378" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.1.10
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.004331" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.004322" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.1.7
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.002462" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.002457" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.1.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.009711" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.009685" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.1.5
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.010991" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.010976" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.1.0
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.006567" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.006561" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.0.14 - 7.0.20
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 7.0.0 - 7.0.8
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2013-11-05 10:01:34.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2013-11-05T10:01:34+01:00</br>DATE_ISO8601 - 2013-11-05T10:01:34+0100</br>DATE_RFC822 - Tue, 05 Nov 13 10:01:34 +0100</br>DATE_RSS - Tue, 05 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Tue, 19 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1384851694</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2013-11-19 13:01:34.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 14400</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","19-11-13 13:01:34")</br> Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/RGLEh:42 Stack trace: #0 {main} thrown in /in/RGLEh on line 42
Process exited with code 255.
Output for 5.6.28
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2014-12-17 10:53:48.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2014-12-17T10:53:48+01:00</br>DATE_ISO8601 - 2014-12-17T10:53:48+0100</br>DATE_RFC822 - Wed, 17 Dec 14 10:53:48 +0100</br>DATE_RSS - Wed, 17 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Wed, 31 Dec 2014 10:53:48 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1420019628</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2014-12-31 12:53:48.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","31-12-14 12:53:48")</br> Fatal error: Call to undefined function mysql_query() in /in/RGLEh on line 42
Process exited with code 255.
Output for 5.4.30 - 5.4.45, 5.5.14 - 5.5.37, 5.6.0 - 5.6.23
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(26) "2013-11-05 10:01:34.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2013-11-05T10:01:34+01:00</br>DATE_ISO8601 - 2013-11-05T10:01:34+0100</br>DATE_RFC822 - Tue, 05 Nov 13 10:01:34 +0100</br>DATE_RSS - Tue, 05 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Tue, 19 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1384851694</br>object(DateTime)#1 (3) { ["date"]=> string(26) "2013-11-19 13:01:34.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 14400</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","19-11-13 13:01:34")</br> Fatal error: Call to undefined function mysql_query() in /in/RGLEh on line 42
Process exited with code 255.
Output for 5.3.7 - 5.3.29, 5.4.0 - 5.4.29, 5.5.0 - 5.5.13
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(19) "2013-11-05 10:01:34" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2013-11-05T10:01:34+01:00</br>DATE_ISO8601 - 2013-11-05T10:01:34+0100</br>DATE_RFC822 - Tue, 05 Nov 13 10:01:34 +0100</br>DATE_RSS - Tue, 05 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Tue, 19 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1384851694</br>object(DateTime)#1 (3) { ["date"]=> string(19) "2013-11-19 13:01:34" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 14400</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","19-11-13 13:01:34")</br> Fatal error: Call to undefined function mysql_query() in /in/RGLEh on line 42
Process exited with code 255.
Output for 5.3.0 - 5.3.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (3) { ["date"]=> string(19) "2013-11-05 10:01:34" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2013-11-05T10:01:34+01:00</br>DATE_ISO8601 - 2013-11-05T10:01:34+0100</br>DATE_RFC822 - Tue, 05 Nov 13 10:01:34 +0100</br>DATE_RSS - Tue, 05 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br>Date modify - Tue, 19 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Timezone -----------------------------------------------</br>http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone </br>Timestamp - 1384851694</br>object(DateTime)#1 (3) { ["date"]=> string(19) "2013-11-19 12:01:34" ["timezone_type"]=> int(3) ["timezone"]=> string(13) "Europe/Moscow" } Timezone offset to GMT - 10800</br></br>-------------------------------------- MYSQL -----------------------------------------------</br> Notice: Use of undefined constant CURRENT_TIMESTAMP - assumed 'CURRENT_TIMESTAMP' in /in/RGLEh on line 40 INSERT INTO date_date(my_timestamp, datetime) VALUES("CURRENT_TIMESTAMP","19-11-13 12:01:34")</br> Fatal error: Call to undefined function mysql_query() in /in/RGLEh on line 42
Process exited with code 255.
Output for 5.2.0 - 5.2.17
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br>object(DateTime)#2 (0) { } </br>------------------------------------ DateTime Constants -------------------------------------------------</br>DATE_ATOM - 2013-11-05T10:01:34+01:00</br>DATE_ISO8601 - 2013-11-05T10:01:34+0100</br>DATE_RFC822 - Tue, 05 Nov 13 10:01:34 +0100</br>DATE_RSS - Tue, 05 Nov 2013 10:01:34 +0100</br></br>-------------------------------------- Operation with Date -----------------------------------------------</br>Offset to GMT - 3600</br> Fatal error: Call to a member function format() on a non-object in /in/RGLEh on line 22
Process exited with code 255.
Output for 5.1.0 - 5.1.6
PHP INI SETTING : Europe/Amsterdam</br>Current timezone: Europe/Amsterdam</br> Fatal error: Class 'DateTime' not found in /in/RGLEh on line 11
Process exited with code 255.
Output for 5.0.0 - 5.0.5
PHP INI SETTING : </br> Fatal error: Call to undefined function date_default_timezone_get() in /in/RGLEh on line 10
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in /in/RGLEh on line 22
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in /in/RGLEh on line 22
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `','' or `';'' in /in/RGLEh on line 22
Process exited with code 255.

preferences:
314.27 ms | 401 KiB | 347 Q