summaryrefslogtreecommitdiff
path: root/tests/php/phpt/variables/005-value-casting-operators.phpt-
blob: 5e0fb8e1334d16737c487589e9266eef4b5497de (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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
--TEST--
Test Php::Value casting operators
--DESCRIPTION--
The Php::Value class has casting operators to cast the object to almost every thinkable native type.


It seems need to replace double on long double

native_value_casting - repeats the behavior of c++ functions TestVariables\value_casting
the output of each of these functions should be the same


--SKIPIF--
<?php if (!extension_loaded("extension_for_tests")) print "skip"; ?>
--FILEEOF--
<?php


function bool2str($b) {
    return $b ? "Yes" : "No";
}
function native_value_casting($value) {
    echo  "   long:", (int)$value, "\n string:", (string)$value, "\n double:", (double)$value, "\n   bool:", bool2str((bool)$value), PHP_EOL;
}


function out($v) {
    echo 'Test ';
    var_export($v);
    echo ':', PHP_EOL;
    TestVariables\value_casting($v);
    //native_value_casting($v);
    echo PHP_EOL;
}

out(5555555555555555);
out("9223372036854775807");
out(9223372036854775807);
out(5);
out(-99999999);
out("18");
out("3.14159265359");
out(3.14159265359);
out(25/7);
out(" this is a string ");
out(" 2-nd string ");
out("false");
out(false);
out("true");
out(true);
out(0);
out("0");
out(0123); // octal number (equivalent to 83 decimal)
out(0x1A); // hexadecimal number (equivalent to 26 decimal)




//echo PHP_EOL;
--EXPECT--
Test 5555555555555555:
   long:5555555555555555
 string:5555555555555555
 double:5.5555555555556E+15
   bool:Yes

Test '9223372036854775807':
   long:9223372036854775807
 string:9223372036854775807
 double:9.2233720368548E+18
   bool:Yes

Test 9223372036854775807:
   long:9223372036854775807
 string:9223372036854775807
 double:9.2233720368548E+18
   bool:Yes

Test 5:
   long:5
 string:5
 double:5
   bool:Yes

Test -99999999:
   long:-99999999
 string:-99999999
 double:-99999999
   bool:Yes

Test '18':
   long:18
 string:18
 double:18
   bool:Yes

Test '3.14159265359':
   long:3
 string:3.14159265359
 double:3.14159265359
   bool:Yes

Test 3.14159265359:
   long:3
 string:3.14159265359
 double:3.14159265359
   bool:Yes

Test 3.5714285714286:
   long:3
 string:3.5714285714286
 double:3.5714285714286
   bool:Yes

Test ' this is a string ':
   long:0
 string: this is a string 
 double:0
   bool:Yes

Test ' 2-nd string ':
   long:2
 string: 2-nd string 
 double:2
   bool:Yes

Test 'false':
   long:0
 string:false
 double:0
   bool:Yes

Test false:
   long:0
 string:
 double:0
   bool:No

Test 'true':
   long:0
 string:true
 double:0
   bool:Yes

Test true:
   long:1
 string:1
 double:1
   bool:Yes

Test 0:
   long:0
 string:0
 double:0
   bool:No

Test '0':
   long:0
 string:0
 double:0
   bool:No

Test 83:
   long:83
 string:83
 double:83
   bool:Yes

Test 26:
   long:26
 string:26
 double:26
   bool:Yes