blob: eac15ca8e4e5ebec1dc6861e148918a7324e723a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
--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"; ?>
--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 ***
-- Testing localtime() function with 'float 12.3456789000e10' to timestamp --
Warning: localtime() expects parameter 1 to be int, float given in %s on line %d
bool(false)
Warning: localtime() expects parameter 1 to be int, 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 int, float given in %s on line %d
bool(false)
Warning: localtime() expects parameter 1 to be int, float given in %s on line %d
bool(false)
===DONE===
|