File: float.phpt

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (130 lines) | stat: -rw-r--r-- 2,309 bytes parent folder | download
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
--TEST--
PDO PgSQL float value
--EXTENSIONS--
pdo
pdo_pgsql
--SKIPIF--
<?php
require __DIR__ . '/config.inc';
require __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc';
PDOTest::skip();
?>
--FILE--
<?php
require __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc';
$db = PDOTest::test_factory(__DIR__ . '/common.phpt');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false);

$stmt = $db->query(<<<'SQL'
select cast(0.4 as float4) as value4,
cast(0.8 as float8) as value8,
cast('NaN' as float4) as valuenan,
cast('Infinity' as float4) as valueinfinity,
cast('-Infinity' as float4) as valueninfinity
SQL);

var_dump($stmt->fetchAll());
var_dump($stmt->getColumnMeta(0));
var_dump($stmt->getColumnMeta(1));
var_dump($stmt->getColumnMeta(2));
var_dump($stmt->getColumnMeta(3));
var_dump($stmt->getColumnMeta(4));
?>
--EXPECT--
array(1) {
  [0]=>
  array(5) {
    ["value4"]=>
    float(0.4)
    ["value8"]=>
    float(0.8)
    ["valuenan"]=>
    float(NAN)
    ["valueinfinity"]=>
    float(INF)
    ["valueninfinity"]=>
    float(-INF)
  }
}
array(7) {
  ["pgsql:oid"]=>
  int(700)
  ["pgsql:table_oid"]=>
  int(0)
  ["native_type"]=>
  string(6) "float4"
  ["pdo_type"]=>
  int(2)
  ["name"]=>
  string(6) "value4"
  ["len"]=>
  int(4)
  ["precision"]=>
  int(-1)
}
array(7) {
  ["pgsql:oid"]=>
  int(701)
  ["pgsql:table_oid"]=>
  int(0)
  ["native_type"]=>
  string(6) "float8"
  ["pdo_type"]=>
  int(2)
  ["name"]=>
  string(6) "value8"
  ["len"]=>
  int(8)
  ["precision"]=>
  int(-1)
}
array(7) {
  ["pgsql:oid"]=>
  int(700)
  ["pgsql:table_oid"]=>
  int(0)
  ["native_type"]=>
  string(6) "float4"
  ["pdo_type"]=>
  int(2)
  ["name"]=>
  string(8) "valuenan"
  ["len"]=>
  int(4)
  ["precision"]=>
  int(-1)
}
array(7) {
  ["pgsql:oid"]=>
  int(700)
  ["pgsql:table_oid"]=>
  int(0)
  ["native_type"]=>
  string(6) "float4"
  ["pdo_type"]=>
  int(2)
  ["name"]=>
  string(13) "valueinfinity"
  ["len"]=>
  int(4)
  ["precision"]=>
  int(-1)
}
array(7) {
  ["pgsql:oid"]=>
  int(700)
  ["pgsql:table_oid"]=>
  int(0)
  ["native_type"]=>
  string(6) "float4"
  ["pdo_type"]=>
  int(2)
  ["name"]=>
  string(14) "valueninfinity"
  ["len"]=>
  int(4)
  ["precision"]=>
  int(-1)
}