php-src/ext/date/tests/localtime_variation3.phpt

51 lines
1.7 KiB
Plaintext
Raw Normal View History

2009-01-09 05:09:40 +00:00
--TEST--
Test localtime() function : usage variation - Passing higher positive and negetive float values to timestamp.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
2009-01-09 05:09:40 +00:00
--FILE--
<?php
/* Prototype : array localtime([int timestamp [, bool associative_array]])
* Description: Returns the results of the C system call localtime as an associative array
* if the associative_array argument is set to 1 other wise it is a regular array
* Source code: ext/date/php_date.c
* Alias to functions:
*/
echo "*** Testing localtime() : usage variation ***\n";
date_default_timezone_set("UTC");
// Initialise function arguments not being substituted (if any)
$is_associative = true;
echo "\n-- Testing localtime() function with 'float 12.3456789000e10' to timestamp --\n";
$timestamp = 12.3456789000e10;
var_dump( localtime($timestamp) );
var_dump( localtime($timestamp, $is_associative) );
echo "\n-- Testing localtime() function with 'float -12.3456789000e10' to timestamp --\n";
$timestamp = -12.3456789000e10;
var_dump( localtime($timestamp) );
var_dump( localtime($timestamp, $is_associative) );
?>
===DONE===
--EXPECTF--
*** Testing localtime() : usage variation ***
2009-01-09 05:09:40 +00:00
-- Testing localtime() function with 'float 12.3456789000e10' to timestamp --
2009-01-09 05:09:40 +00:00
Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d
bool(false)
Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d
bool(false)
-- Testing localtime() function with 'float -12.3456789000e10' to timestamp --
Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d
bool(false)
Warning: localtime() expects parameter 1 to be integer, float given in %s on line %d
bool(false)
2009-01-09 05:09:40 +00:00
===DONE===