Home
last modified time | relevance | path

Searched refs:data (Results 176 – 200 of 2299) sorted by relevance

12345678910>>...92

/PHP-7.3/ext/simplexml/tests/
H A Dsxe_003.phpt20 Here we have some text data.
40 foreach($sxe->getChildren() as $name => $data) {
42 var_dump(get_class($data));
43 var_dump(trim($data));
52 foreach($sxe->getChildren() as $name => $data) {
54 var_dump(get_class($data));
55 var_dump(trim($data));
69 string(28) "Here we have some text data."
/PHP-7.3/ext/session/tests/
H A Dsession_cache_expire_error.phpt38 // Integer data
44 // Float data
51 // Null data
55 // Boolean data
65 // Invalid string data
70 // Object data
73 // Undefined data
76 // Unset data
/PHP-7.3/ext/standard/tests/general_functions/
H A Descapeshellarg_variation1-win32.phpt2 Test escapeshellarg() function : usage variations - different data types as $arg arg
33 // int data
40 // float data
47 // null data
51 // boolean data
57 // empty data
61 // undefined data
64 // unset data
H A Descapeshellarg_variation1.phpt2 Test escapeshellarg() function : usage variations - different data types as $y arg
33 // int data
40 // float data
47 // null data
51 // boolean data
57 // empty data
61 // undefined data
64 // unset data
/PHP-7.3/ext/xml/tests/
H A Dbug32001.phpt36 $data = '';
43 $data .= <<<HERE
53 $data = iconv("UTF-8", $this->encoding, $data);
59 $data = "\xef\xbb\xbf".$data;
70 $data = "\xfe\xff".$data;
77 $data = "\xff\xfe".$data;
88 $data = "\x00\x00\xfe\xff".$data;
95 $data = "\xff\xfe\x00\x00".$data;
171 Chunk size: all data at once
183 Chunk size: all data at once
[all …]
/PHP-7.3/tests/basic/
H A Drfc1867_missing_boundary.phpt6 Content-Type: multipart/form-data
8 Content-Disposition: form-data; name="foobar"
18 Warning: Missing boundary in multipart/form-data POST data in %s
H A Drfc1867_invalid_boundary.phpt6 Content-Type: multipart/form-data; boundary="foobar
8 Content-Disposition: form-data; name="foobar"
18 Warning: Invalid boundary in multipart/form-data POST data in %s
H A D030.phpt6 Content-Type: multipart/form-data; boundary=BVoyv; charset=iso-8859-1
8 Content-Disposition: form-data; name="data"
18 ["data"]=>
/PHP-7.3/ext/standard/tests/strings/
H A Dphp_strip_whitespace.phpt11 $data = '/* test comment */';
12 file_put_contents($filename, $data);
15 $data = '<?php /* test comment */ ?>';
16 file_put_contents($filename, $data);
19 $data = '<?php
36 file_put_contents($filename, $data);
H A Dunpack_offset.phpt5 $data = "pad" . pack("ll", 0x01020304, 0x05060708);
7 $a = unpack("l2", $data, 3);
11 unpack("l", $data, 3)[1],
12 unpack("@4/l", $data, 3)[1]);
/PHP-7.3/ext/standard/tests/file/
H A Dstream_rfc2397_006.phpt9 "data:;base64,\0Zm9vYmFyIGZvb2Jhcg==",
10 "data:;base64,Zm9vYmFy\0IGZvb2Jhcg==",
11 'data:;base64,#Zm9vYmFyIGZvb2Jhcg==',
12 'data:;base64,#Zm9vYmFyIGZvb2Jhc=',
30 Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhcg==): failed to open stream: rfc2397: una…
33 Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhc=): failed to open stream: rfc2397: unabl…
H A Dfile_put_contents_variation2.phpt2 Test file_put_contents() function : usage variation - different data types to write
8 * Description: Write/Create a file with contents data and return the number of bytes written
58 // int data
64 // float data
71 // array data
77 // null data
81 // boolean data
87 // empty data
91 // object data
95 // undefined data
[all …]
H A Dfile_put_contents_variation8-win32.phpt13 * Description: Write/Create a file with contents data and return the number of bytes written
39 $res = file_put_contents($value, "Some data");
44 echo "Failed to write data to: $key\n";
62 Failed to write data to: FALSE
67 Failed to write data to: NULL
72 Failed to write data to: ""
77 Failed to write data to: " "
82 Failed to write data to: \0
87 Failed to write data to: array()
92 Failed to write data to: /no/such/file/dir
[all …]
/PHP-7.3/Zend/tests/generators/
H A Dthrow_into_yield_from_array.phpt6 $data = [1, 2, 3];
28 $yfiter = yf($data);
29 $yfgen = yf(yielditer($data));
31 test(yf($data));
33 test(yf(yielditer($data)));
/PHP-7.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf8.c105 CK((*filter->output_function)(w, filter->data)); in mbfl_filt_put_invalid_char()
121 CK((*filter->output_function)(c, filter->data)); in mbfl_filt_conv_utf8_wchar()
142 CK((*filter->output_function)(s, filter->data)); in mbfl_filt_conv_utf8_wchar()
210 (*filter->flush_function)(filter->data); in mbfl_filt_conv_utf8_wchar_flush()
222 CK((*filter->output_function)(c, filter->data)); in mbfl_filt_conv_wchar_utf8()
224 CK((*filter->output_function)(((c >> 6) & 0x1f) | 0xc0, filter->data)); in mbfl_filt_conv_wchar_utf8()
225 CK((*filter->output_function)((c & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
228 CK((*filter->output_function)(((c >> 6) & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
229 CK((*filter->output_function)((c & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
233 CK((*filter->output_function)(((c >> 6) & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
[all …]
H A Dmbfilter_ucs4.c178 CK((*filter->output_function)(0xfeff, filter->data)); in mbfl_filt_conv_ucs4_wchar()
181 CK((*filter->output_function)(n, filter->data)); in mbfl_filt_conv_ucs4_wchar()
211 CK((*filter->output_function)(n, filter->data)); in mbfl_filt_conv_ucs4be_wchar()
222 CK((*filter->output_function)((c >> 24) & 0xff, filter->data)); in mbfl_filt_conv_wchar_ucs4be()
223 CK((*filter->output_function)((c >> 16) & 0xff, filter->data)); in mbfl_filt_conv_wchar_ucs4be()
224 CK((*filter->output_function)((c >> 8) & 0xff, filter->data)); in mbfl_filt_conv_wchar_ucs4be()
225 CK((*filter->output_function)(c & 0xff, filter->data)); in mbfl_filt_conv_wchar_ucs4be()
257 CK((*filter->output_function)(n, filter->data)); in mbfl_filt_conv_ucs4le_wchar()
268 CK((*filter->output_function)(c & 0xff, filter->data)); in mbfl_filt_conv_wchar_ucs4le()
269 CK((*filter->output_function)((c >> 8) & 0xff, filter->data)); in mbfl_filt_conv_wchar_ucs4le()
[all …]
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_ps_select_union.phpt19 $data = array();
21 $data[] = $row['column1'];
38 $index + 1, gettype($data[$index]), $data[$index], gettype($column1), $column1);
64 $index + 1, gettype($data[$index]), $data[$index], gettype($column1), $column1);
76 $data = array();
78 $data[] = $row['column1'];
94 $index + 1, gettype($data[$index]), $data[$index], gettype($column1), $column1);
125 $data = array();
143 $index + 1, gettype($data[$index]), $data[$index], gettype($column1), $column1);
181 $data = array();
[all …]
/PHP-7.3/ext/hash/sha3/generic32lc/
H A DKeccakP-1600-SnP.h28 void KeccakP1600_AddByte(void *state, unsigned char data, unsigned int offset);
29 void KeccakP1600_AddBytes(void *state, const unsigned char *data, unsigned int offset, unsigned int…
30 void KeccakP1600_OverwriteBytes(void *state, const unsigned char *data, unsigned int offset, unsign…
35 void KeccakP1600_ExtractBytes(const void *state, unsigned char *data, unsigned int offset, unsigned…
/PHP-7.3/ext/spl/tests/
H A Dbug72051.phpt6 $data = [
10 $callbackTest = new CallbackFilterIterator(new ArrayIterator($data), function (&$current) {
16 $data = $callbackTest->current();
18 print_r($data);
/PHP-7.3/ext/mbstring/tests/
H A Dmb_encode_mimeheader_variation1.phpt2 Test mb_encode_mimeheader() function : usage variations - Pass different data types to $str arg
17 * Pass different data types to $str argument to see how mb_encode_mimeheader() behaves
51 // int data
57 // float data
64 // null data
68 // boolean data
74 // empty data
78 // string data
83 // object data
86 // undefined data
[all …]
H A Dmb_stripos_variation1.phpt2 Test mb_stripos() function : usage variations - pass different data types to $haystack arg
17 * Pass mb_stripos different data types as $haystack arg to test behaviour
50 // int data
56 // float data
63 // null data
67 // boolean data
73 // empty data
77 // string data
82 // object data
85 // undefined data
[all …]
H A Dmb_strpos_variation1.phpt2 Test mb_strpos() function : usage variations - pass different data types to $haystack arg
16 * Pass mb_strpos different data types as $haystack arg to test behaviour
49 // int data
55 // float data
62 // null data
66 // boolean data
72 // empty data
76 // string data
81 // object data
84 // undefined data
[all …]
H A Dmb_strripos_variation1.phpt2 Test mb_strripos() function : usage variations - pass different data types to $haystack arg
17 * Pass mb_strripos different data types as $haystack arg to test behaviour
50 // int data
56 // float data
63 // null data
67 // boolean data
73 // empty data
77 // string data
82 // object data
85 // undefined data
[all …]
H A Dmb_strripos_variation2.phpt2 Test mb_strripos() function : usage variations - pass different data types as $needle arg
17 * Pass mb_strripos different data types as $needle arg to test behaviour
50 // int data
56 // float data
63 // null data
67 // boolean data
73 // empty data
77 // string data
82 // object data
85 // undefined data
[all …]
H A Dmb_strrpos_variation1.phpt2 Test mb_strrpos() function : usage variations - pass different data types to $haystack arg
16 * Pass mb_strrpos() different data types as $haystack argument to test behaviour
49 // int data
55 // float data
62 // null data
66 // boolean data
72 // empty data
76 // string data
81 // object data
84 // undefined data
[all …]

Completed in 46 milliseconds

12345678910>>...92