mirror of
https://github.com/php/php-src.git
synced 2026-04-17 04:51:03 +02:00
PHP requires integer typehints to be written "int" and does not allow "integer" as an alias. This changes type error messages to match the actual type name and avoids confusing messages like "must be of the type integer, integer given".
57 lines
1.9 KiB
PHP
57 lines
1.9 KiB
PHP
--TEST--
|
|
Test timezone_name_get() function : error conditions
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : string timezone_name_get ( DateTime $object )
|
|
* Description: Returns the name of the timezone
|
|
* Source code: ext/date/php_date.c
|
|
* Alias to functions: DateTimeZone::getName()
|
|
*/
|
|
|
|
// Set timezone
|
|
date_default_timezone_set("Europe/London");
|
|
|
|
echo "*** Testing timezone_name_get() : error conditions ***\n";
|
|
|
|
echo "\n-- Testing timezone_name_get() function with zero arguments --\n";
|
|
var_dump( timezone_name_get() );
|
|
|
|
echo "\n-- Testing date_timezone_set() function with more than expected no. of arguments --\n";
|
|
$datetime = date_create("2009-01-30 17:57:32");
|
|
$extra_arg = 99;
|
|
var_dump( timezone_name_get($datetime, $extra_arg) );
|
|
|
|
echo "\n-- Testing timezone_name_get() function with an invalid values for \$object argument --\n";
|
|
$invalid_obj = new stdClass();
|
|
var_dump( timezone_name_get($invalid_obj) );
|
|
$invalid_obj = 10;
|
|
var_dump( timezone_name_get($invalid_obj) );
|
|
$invalid_obj = null;
|
|
var_dump( timezone_name_get($invalid_obj) );
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
*** Testing timezone_name_get() : error conditions ***
|
|
|
|
-- Testing timezone_name_get() function with zero arguments --
|
|
|
|
Warning: timezone_name_get() expects exactly 1 parameter, 0 given in %s on line %d
|
|
bool(false)
|
|
|
|
-- Testing date_timezone_set() function with more than expected no. of arguments --
|
|
|
|
Warning: timezone_name_get() expects exactly 1 parameter, 2 given in %s on line %d
|
|
bool(false)
|
|
|
|
-- Testing timezone_name_get() function with an invalid values for $object argument --
|
|
|
|
Warning: timezone_name_get() expects parameter 1 to be DateTimeZone, object given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: timezone_name_get() expects parameter 1 to be DateTimeZone, int given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: timezone_name_get() expects parameter 1 to be DateTimeZone, null given in %s on line %d
|
|
bool(false)
|
|
===DONE===
|