d42524a466c3bfc1318792d41ebba3c785facbb3
[m6w6/ext-pq] / tests / res001.phpt
1 --TEST--
2 empty result
3 --SKIPIF--
4 <?php
5 include "_skipif.inc";
6 ?>
7 --FILE--
8 <?php
9 echo "Test\n";
10
11 include "_setup.inc";
12
13 set_error_handler(function($code, $error, $file, $line) {
14 printf("\nWarning: %s in %s on line %d\n", $error, $file, $line);
15 return true;
16 }, E_RECOVERABLE_ERROR);
17
18 class r extends pq\Result {
19 public $dummy = 2;
20 }
21
22 var_dump(new pq\Result, get_object_vars(new r));
23 ?>
24 Done
25 --EXPECTF--
26 Test
27
28 Warning: pq\Result not initialized in %s on line %d
29
30 Warning: pq\Result not initialized in %s on line %d
31
32 Warning: pq\Result not initialized in %s on line %d
33
34 Warning: pq\Result not initialized in %s on line %d
35
36 Warning: pq\Result not initialized in %s on line %d
37
38 Warning: pq\Result not initialized in %s on line %d
39
40 Warning: pq\Result not initialized in %s on line %d
41
42 Warning: pq\Result not initialized in %s on line %d
43
44 Warning: pq\Result not initialized in %s on line %d
45
46 Warning: pq\Result not initialized in %s on line %d
47
48 Warning: pq\Result not initialized in %s on line %d
49
50 Warning: pq\Result not initialized in %s on line %d
51
52 Warning: pq\Result not initialized in %s on line %d
53
54 Warning: pq\Result not initialized in %s on line %d
55
56 Warning: pq\Result not initialized in %s on line %d
57
58 Warning: pq\Result not initialized in %s on line %d
59
60 Warning: pq\Result not initialized in %s on line %d
61 object(pq\Result)#%d (8) {
62 ["status"]=>
63 NULL
64 ["statusMessage"]=>
65 NULL
66 ["errorMessage"]=>
67 NULL
68 ["numRows"]=>
69 int(0)
70 ["numCols"]=>
71 int(0)
72 ["affectedRows"]=>
73 int(0)
74 ["fetchType"]=>
75 int(0)
76 ["autoConvert"]=>
77 int(65535)
78 }
79 array(9) {
80 ["dummy"]=>
81 int(2)
82 ["status"]=>
83 NULL
84 ["statusMessage"]=>
85 NULL
86 ["errorMessage"]=>
87 NULL
88 ["numRows"]=>
89 int(0)
90 ["numCols"]=>
91 int(0)
92 ["affectedRows"]=>
93 int(0)
94 ["fetchType"]=>
95 int(0)
96 ["autoConvert"]=>
97 int(65535)
98 }
99 Done