summaryrefslogtreecommitdiff
path: root/tests/php/phpt/variables/011-value-casting-operators.phpt
blob: 27e92c7fe1f05f3cea87bf1271a4a77e543c5cea (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
--TEST--
Test Php::Value casting operators (64bit OS only)
--DESCRIPTION--
The Php::Value class has casting operators to cast the object to almost every thinkable native type.

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

Skip if the current OS is not 64-bit architecture.

--SKIPIF--
<?php if (!extension_loaded("extension_for_tests") || 'x86_64' != php_uname('m') ) 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;
    echo  "   long:", (int)$value, "\n string:", (string)$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
   bool:Yes

Test '9223372036854775807':
   long:9223372036854775807
 string:9223372036854775807
   bool:Yes

Test 9223372036854775807:
   long:9223372036854775807
 string:9223372036854775807
   bool:Yes

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

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

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

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

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

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

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

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

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

Test false:
   long:0
 string:
   bool:No

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

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

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

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

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

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