1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

- Fix test.

This commit is contained in:
Derick Rethans
2005-08-24 14:17:58 +00:00
parent e226f0f87f
commit e87054dbec
+1
View File
@@ -2,6 +2,7 @@
Bug #34087 (strtotime() does not work with date format "Y/m/d")
--FILE--
<?php
date_default_timezone_set("UTC");
echo "Y/m/d: ", strtotime("2005/8/12"), "\n";
echo "Y-m-d: ", strtotime("2005-8-12");
?>