mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
55626549d8
It fixes several bugs: - Fixed bug #45554 (Inconsistent behavior of the u format char). - Fixed bug #48225 (DateTime parser doesn't set microseconds for "now"). - Fixed bug #52514 (microseconds are missing in DateTime class). - Fixed bug #52519 (microseconds in DateInterval are missing). - Fixed bug #68506 (General DateTime improvments needed for microseconds to become useful). - Fixed bug #73109 (timelib_meridian doesn't parse dots correctly). - Fixed bug #73247 (DateTime constructor does not initialise microseconds property). It also updates timelib to 2016.04, and updates a data mapping file, which causes changes to the volatile abbreviations tests.
72 lines
2.4 KiB
PHP
72 lines
2.4 KiB
PHP
--TEST--
|
|
Test date_time_set() function : error conditions
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : DateTime date_time_set ( DateTime $object , int $hour , int $minute [, int $second ] )
|
|
* Description: Resets the current time of the DateTime object to a different time.
|
|
* Source code: ext/date/php_date.c
|
|
* Alias to functions: DateTime::setTime
|
|
*/
|
|
|
|
date_default_timezone_set("Europe/London");
|
|
|
|
echo "*** Testing date_time_set() : error conditions ***\n";
|
|
|
|
echo "\n-- Testing date_time_set() function with zero arguments --\n";
|
|
var_dump( date_time_set() );
|
|
|
|
echo "\n-- Testing date_time_set() function with less than expected no. of arguments --\n";
|
|
$datetime = date_create("2009-01-31 15:34:10");
|
|
$hour = 18;
|
|
var_dump( date_time_set($datetime) );
|
|
var_dump( date_time_set($datetime, $hour) );
|
|
|
|
echo "\n-- Testing date_time_set() function with more than expected no. of arguments --\n";
|
|
$min = 15;
|
|
$sec = 30;
|
|
$microseconds = 123123;
|
|
$extra_arg = 10;
|
|
var_dump( date_time_set($datetime, $hour, $min, $sec, $microseconds, $extra_arg) );
|
|
|
|
echo "\n-- Testing date_time_set() function with an invalid values for \$object argument --\n";
|
|
$invalid_obj = new stdClass();
|
|
var_dump( date_time_set($invalid_obj, $hour, $min, $sec) );
|
|
$invalid_obj = 10;
|
|
var_dump( date_time_set($invalid_obj, $hour, $min, $sec) );
|
|
$invalid_obj = null;
|
|
var_dump( date_time_set($invalid_obj, $hour, $min, $sec) );
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
*** Testing date_time_set() : error conditions ***
|
|
|
|
-- Testing date_time_set() function with zero arguments --
|
|
|
|
Warning: date_time_set() expects at least 3 parameters, 0 given in %s on line %d
|
|
bool(false)
|
|
|
|
-- Testing date_time_set() function with less than expected no. of arguments --
|
|
|
|
Warning: date_time_set() expects at least 3 parameters, 1 given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: date_time_set() expects at least 3 parameters, 2 given in %s on line %d
|
|
bool(false)
|
|
|
|
-- Testing date_time_set() function with more than expected no. of arguments --
|
|
|
|
Warning: date_time_set() expects at most 5 parameters, 6 given in %s on line %d
|
|
bool(false)
|
|
|
|
-- Testing date_time_set() function with an invalid values for $object argument --
|
|
|
|
Warning: date_time_set() expects parameter 1 to be DateTime, object given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: date_time_set() expects parameter 1 to be DateTime, integer given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: date_time_set() expects parameter 1 to be DateTime, null given in %s on line %d
|
|
bool(false)
|
|
===DONE===
|