Home
last modified time | relevance | path

Searched refs:type (Results 101 – 125 of 2551) sorted by relevance

12345678910>>...103

/PHP-8.0/Zend/tests/
H A D033.phpt30 Warning: Trying to access array offset on value of type null in %s on line %d
32 Warning: Trying to access array offset on value of type null in %s on line %d
34 Warning: Trying to access array offset on value of type null in %s on line %d
36 Warning: Trying to access array offset on value of type null in %s on line %d
38 Warning: Trying to access array offset on value of type null in %s on line %d
42 Warning: Trying to access array offset on value of type null in %s on line %d
44 Warning: Trying to access array offset on value of type null in %s on line %d
46 Warning: Trying to access array offset on value of type null in %s on line %d
48 Warning: Trying to access array offset on value of type null in %s on line %d
50 Warning: Trying to access array offset on value of type null in %s on line %d
[all …]
/PHP-8.0/ext/standard/tests/streams/
H A Dstream_select_preserve_keys.phpt20 resource(%d) of type (stream)
22 resource(%d) of type (stream)
26 resource(%d) of type (stream)
28 resource(%d) of type (stream)
32 resource(%d) of type (stream)
34 resource(%d) of type (stream)
/PHP-8.0/ext/standard/tests/http/
H A Dbug61548.phpt2 Bug #61548 (content-type must appear at the end of headers)
35 do_test("First:1\nSecond:2\nContent-type: text/plain");
36 do_test("First:1\nSecond:2\nContent-type: text/plain\n");
38 do_test("First:1\nContent-type:text/plain\nSecond:2");
39 do_test("First:1\nContent-type:text/plain\nSecond:2\n");
50 Content-type: text/plain
64 Content-type: text/plain
78 Content-type: text/plain
92 Content-type:text/plain
105 Content-type:text/plain
[all …]
/PHP-8.0/ext/soap/tests/interop/Round2/GroupB/
H A Dr2_groupB_004s.phpt28type="ns2:SOAPStructStruct"><varString xsi:type="xsd:string">arg</varString><varInt xsi:type="xsd:…
30type="ns2:SOAPStructStruct"><varString xsi:type="xsd:string">arg</varString><varInt xsi:type="xsd:…
H A Dr2_groupB_005s.phpt28type="ns2:SOAPArrayStruct"><varString xsi:type="xsd:string">arg</varString><varInt xsi:type="xsd:i…
30type="ns2:SOAPArrayStruct"><varString xsi:type="xsd:string">arg</varString><varInt xsi:type="xsd:i…
H A Dr2_groupB_003s.phpt28type="ns2:ArrayOfString2D"><item SOAP-ENC:arrayType="xsd:string[3]" xsi:type="SOAP-ENC:Array"><ite…
30type="ns2:ArrayOfString2D"><item xsi:type="xsd:string">row0col0</item><item xsi:type="xsd:string">…
/PHP-8.0/ext/standard/
H A Ddns_win32.c99 int type = DNS_TYPE_MX; in PHP_FUNCTION() local
145 int type; in php_parserr() local
148 type = pRec->wType; in php_parserr()
173 switch (type) { in php_parserr()
188 if (type == DNS_TYPE_CNAME) { in php_parserr()
194 if (type == DNS_TYPE_NS) { in php_parserr()
200 if (type == DNS_TYPE_PTR) { in php_parserr()
390 type = -1; in PHP_FUNCTION()
394 type = 0; in PHP_FUNCTION()
399 type++ in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/soap/tests/interop/Round2/Base/
H A Dr2_base_015s.phpt41type="ns2:ArrayOfSOAPStruct"><item xsi:type="ns2:SOAPStruct"><varString xsi:type="xsd:string">arg<…
43type="ns2:ArrayOfSOAPStruct"><item xsi:type="ns2:SOAPStruct"><varString xsi:type="xsd:string">arg<…
/PHP-8.0/ext/ffi/tests/
H A D041.phpt11 return FFI::new(FFI::type($str));
13 $type = FFI::type($str);
14 return FFI::new($type);
37 return FFI::cast(FFI::type($str), FFI::new($str));
39 $type = FFI::type($str);
40 return FFI::cast($type, FFI::new($str));
50 return FFI::arrayType(FFI::type($str), [2]);
52 $type = FFI::type($str);
53 return FFI::arrayType($type, [2]);
H A D036.phpt9 $type = FFI::type("int*");
12 global $type;
13 //$buf = FFI::new("int*[1]"); /* this loses type and crash */
14 $buf = FFI::new(FFI::arrayType($type, [1]));
/PHP-8.0/ext/standard/tests/array/
H A Darray_search_variation4.phpt6 echo "*** Testing resource type with array_search() ***\n";
7 //file type resource
10 //directory type resource
16 // search for resource type in the resource array
18 //checking for (int) type resource
23 //matching "Good" in array(0,"hello"), result:true in loose type check
28 //matching integer 0 in array("this"), result:true in loose type check
33 //matching string "this" in array(0), result:true in loose type check
38 //checking for type FALSE in multidimensional array with loose checking, result:false in loose type
46 //matching string having integer in beginning, result:true in loose type check
[all …]
H A Din_array_variation4.phpt8 echo "*** Testing resource type with in_array() ***\n";
9 //file type resource
12 //directory type resource
18 // search for resource type in the resource array
20 //checking for (int) type resource
25 //matching "Good" in array(0,"hello"), result:true in loose type check
30 //matching integer 0 in array("this"), result:true in loose type check
35 //matching string "this" in array(0), result:true in loose type check
40 //checking for type FALSE in multidimensional array with loose checking, result:false in loose type
48 //matching string having integer in beginning, result:true in loose type check
[all …]
H A Darray_keys_variation_005.phpt6 echo "\n*** Testing array_keys() with resource type ***\n";
13 var_dump(array_keys($arr_resource, $resource1)); // loose type checking
14 var_dump(array_keys($arr_resource, $resource1, TRUE)); // strict type checking
15 var_dump(array_keys($arr_resource, $resource2)); // loose type checking
16 var_dump(array_keys($arr_resource, $resource2, TRUE)); // strict type checking
24 *** Testing array_keys() with resource type ***
/PHP-8.0/ext/reflection/tests/
H A DReflectionNamedType.phpt15 $type = $function->getParameters()[0]->getType();
18 var_dump($type->getName());
19 var_dump((string) $type);
24 $type = $function->getParameters()[0]->getType();
27 var_dump($type->getName());
28 var_dump((string) $type);
/PHP-8.0/ext/spl/tests/
H A Dclass_implements_variation1.phpt116 class_implements(): Argument #1 ($object_or_class) must be of type object|string, int given
119 class_implements(): Argument #1 ($object_or_class) must be of type object|string, int given
122 class_implements(): Argument #1 ($object_or_class) must be of type object|string, int given
125 class_implements(): Argument #1 ($object_or_class) must be of type object|string, int given
128 class_implements(): Argument #1 ($object_or_class) must be of type object|string, float given
131 class_implements(): Argument #1 ($object_or_class) must be of type object|string, float given
155 class_implements(): Argument #1 ($object_or_class) must be of type object|string, null given
158 class_implements(): Argument #1 ($object_or_class) must be of type object|string, null given
161 class_implements(): Argument #1 ($object_or_class) must be of type object|string, bool given
164 class_implements(): Argument #1 ($object_or_class) must be of type object|string, bool given
[all …]
H A Dclass_uses_variation1.phpt116 class_uses(): Argument #1 ($object_or_class) must be of type object|string, int given
119 class_uses(): Argument #1 ($object_or_class) must be of type object|string, int given
122 class_uses(): Argument #1 ($object_or_class) must be of type object|string, int given
125 class_uses(): Argument #1 ($object_or_class) must be of type object|string, int given
128 class_uses(): Argument #1 ($object_or_class) must be of type object|string, float given
131 class_uses(): Argument #1 ($object_or_class) must be of type object|string, float given
155 class_uses(): Argument #1 ($object_or_class) must be of type object|string, null given
158 class_uses(): Argument #1 ($object_or_class) must be of type object|string, null given
161 class_uses(): Argument #1 ($object_or_class) must be of type object|string, bool given
164 class_uses(): Argument #1 ($object_or_class) must be of type object|string, bool given
[all …]
/PHP-8.0/ext/opcache/jit/libudis86/
H A Dsyn-intel.c61 switch(op->type) { in gen_operand()
148 u->operand[0].type != UD_OP_MEM && in ud_translate_intel()
149 u->operand[1].type != UD_OP_MEM ) { in ud_translate_intel()
167 if (u->operand[0].type != UD_NONE) { in ud_translate_intel()
170 if (u->operand[0].type == UD_OP_MEM) { in ud_translate_intel()
171 if (u->operand[1].type == UD_OP_IMM || in ud_translate_intel()
195 if (u->operand[1].type != UD_NONE) { in ud_translate_intel()
198 if (u->operand[1].type == UD_OP_MEM && in ud_translate_intel()
206 if (u->operand[2].type != UD_NONE) { in ud_translate_intel()
209 if (u->operand[2].type == UD_OP_MEM && in ud_translate_intel()
[all …]
/PHP-8.0/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_002w.phpt26type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString xsi:type="xsd:string">arg1</varStr…
28type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString xsi:type="xsd:string">arg1</varStr…
/PHP-8.0/ext/standard/tests/dir/
H A Dreaddir_variation4-win32-mb.phpt88 resource(%d) of type (stream)
92 resource(%d) of type (stream)
96 resource(%d) of type (stream)
100 resource(%d) of type (stream)
104 resource(%d) of type (stream)
108 resource(%d) of type (stream)
112 resource(%d) of type (stream)
116 resource(%d) of type (stream)
120 resource(%d) of type (stream)
124 resource(%d) of type (stream)
[all …]
/PHP-8.0/ext/oci8/tests/
H A Dlob_028.phpt53 resource(%d) of type (oci8 descriptor)
57 resource(%d) of type (oci8 descriptor)
61 resource(%d) of type (oci8 descriptor)
65 resource(%d) of type (oci8 descriptor)
69 resource(%d) of type (oci8 descriptor)
73 resource(%d) of type (oci8 descriptor)
76 Warning: oci_new_descriptor(): Unknown descriptor type %d in %s on line %d
79 Warning: oci_new_descriptor(): Unknown descriptor type %d in %s on line %d
82 Warning: oci_new_descriptor(): Unknown descriptor type %d in %s on line %d
85 Warning: oci_new_descriptor(): Unknown descriptor type %d in %s on line %d
H A Dpersistent.phpt20 resource(%d) of type (oci8 persistent connection)
21 resource(%d) of type (oci8 persistent connection)
22 resource(%d) of type (oci8 persistent connection)
23 resource(%d) of type (oci8 connection)
24 resource(%d) of type (oci8 connection)
25 resource(%d) of type (oci8 connection)
/PHP-8.0/ext/soap/tests/bugs/
H A Dbug30045.phpt13 function foo($type, $num) {
14 return new SoapVar($num, $type);
42 function test($type, $num) {
46 $ret = $soap->foo($type, new SoapVar($num, $type));
143 <param1 xsi:type="xsd:long">2147483647</param1>
146 <param1 xsi:type="xsd:long">2147483648</param1>
149 <param1 xsi:type="xsd:long">4294967296</param1>
152 <param1 xsi:type="xsd:long">8589934592</param1>
155 <param1 xsi:type="xsd:long">17179869184</param1>
160 <param1 xsi:type="xsd:unsignedLong">2147483647</param1>
[all …]
/PHP-8.0/ext/standard/tests/file/
H A Dfgets_variation6-win32.phpt63 -- File content type : numeric --
71 -- File content type : text --
97 -- File content type : numeric --
105 -- File content type : text --
139 -- File content type : text --
173 -- File content type : text --
207 -- File content type : text --
241 -- File content type : text --
275 -- File content type : text --
309 -- File content type : text --
[all …]
H A Dfgets_variation6.phpt63 -- File content type : numeric --
71 -- File content type : text --
97 -- File content type : numeric --
105 -- File content type : text --
139 -- File content type : text --
173 -- File content type : text --
207 -- File content type : text --
241 -- File content type : text --
275 -- File content type : text --
309 -- File content type : text --
[all …]
/PHP-8.0/ext/fileinfo/tests/
H A Dfinfo_open_basic.phpt28 resource(%d) of type (file_info)
29 resource(%d) of type (file_info)
30 resource(%d) of type (file_info)
31 resource(%d) of type (file_info)
32 resource(%d) of type (file_info)
33 resource(%d) of type (file_info)
34 resource(%d) of type (file_info)

Completed in 55 milliseconds

12345678910>>...103