Author: uwendel
Date: 2007-10-05 17:44:09 +0200 (Fri, 05 Oct 2007)
New Revision: 1090
Modified:
trunk/tests/ext/mysqli/mysqli_fetch_all_oo.phpt
Log:
Let's ignore PHPs warnings regarding time zones.
Modified: trunk/tests/ext/mysqli/mysqli_fetch_all_oo.phpt
===================================================================
--- trunk/tests/ext/mysqli/mysqli_fetch_all_oo.phpt 2007-10-05 14:59:47 UTC (rev 1089)
+++ trunk/tests/ext/mysqli/mysqli_fetch_all_oo.phpt 2007-10-05 15:44:09 UTC (rev 1090)
@@ -214,12 +214,12 @@
func_mysqli_fetch_all_oo($link, $engine, "DECIMAL(10,2)", NULL, NULL, 400);
// don't care about date() strict TZ warnings...
- $date = date('Y-m-d');
+ $date = @date('Y-m-d');
func_mysqli_fetch_all_oo($link, $engine, "DATE", $date, $date, 410);
func_mysqli_fetch_all_oo($link, $engine, "DATE NOT NULL", $date, $date, 420);
func_mysqli_fetch_all_oo($link, $engine, "DATE", NULL, NULL, 430);
- $datetime = date('Y-m-d H:i:s');
+ $datetime = @date('Y-m-d H:i:s');
func_mysqli_fetch_all_oo($link, $engine, "DATETIME", $datetime, $datetime, 440);
func_mysqli_fetch_all_oo($link, $engine, "DATETIME NOT NULL", $datetime, $datetime,
450);
func_mysqli_fetch_all_oo($link, $engine, "DATETIME", NULL, NULL, 460);
| Thread |
|---|
| • PHP mysqlnd svn commit: r1090 - trunk/tests/ext/mysqli | uwendel | 5 Oct |