Home
last modified time | relevance | path

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

12345678910>>...92

/PHP-7.1/ext/standard/tests/general_functions/
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.1/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.1/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 Dprintf_variation2.phpt36 // int data
42 // float data
49 // array data
56 // null data
60 // boolean data
66 // empty data
70 // string data
74 // object data
77 // undefined data
80 // unset data
[all …]
H A Dsprintf_variation2.phpt36 // int data
42 // float data
49 // array data
56 // null data
60 // boolean data
66 // empty data
70 // string data
74 // object data
77 // undefined data
80 // unset data
[all …]
/PHP-7.1/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.1/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf8.c103 CK((*filter->output_function)(w, filter->data)); in mbfl_filt_put_invalid_char()
119 CK((*filter->output_function)(c, filter->data)); in mbfl_filt_conv_utf8_wchar()
140 CK((*filter->output_function)(s, filter->data)); in mbfl_filt_conv_utf8_wchar()
208 (*filter->flush_function)(filter->data); in mbfl_filt_conv_utf8_wchar_flush()
220 CK((*filter->output_function)(c, filter->data)); in mbfl_filt_conv_wchar_utf8()
222 CK((*filter->output_function)(((c >> 6) & 0x1f) | 0xc0, filter->data)); in mbfl_filt_conv_wchar_utf8()
223 CK((*filter->output_function)((c & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
226 CK((*filter->output_function)(((c >> 6) & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
227 CK((*filter->output_function)((c & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
231 CK((*filter->output_function)(((c >> 6) & 0x3f) | 0x80, filter->data)); in mbfl_filt_conv_wchar_utf8()
[all …]
/PHP-7.1/ext/xml/tests/
H A Dutf8_decode_variation1.phpt11 /* Prototype : proto string utf8_decode(string data)
35 // int data
41 // float data
48 // array data
55 // null data
59 // boolean data
65 // empty data
69 // object data
72 // undefined data
75 // unset data
[all …]
H A Dxml_parser_set_option_variation3.phpt39 // int data
45 // float data
52 // array data
59 // null data
63 // boolean data
69 // empty data
73 // string data
77 // object data
80 // resource data
83 // undefined data
[all …]
/PHP-7.1/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.1/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
/PHP-7.1/ext/iconv/tests/
H A Diconv_strpos_variation1.phpt2 Test iconv_strpos() function : usage variations - pass different data types to $haystack arg
16 * Pass iconv_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 Diconv_strpos_variation2.phpt2 Test iconv_strpos() function : usage variations - pass different data types as $needle arg
16 * Pass iconv_strpos different data types as $needle 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 Diconv_strrpos_variation1.phpt2 Test iconv_strrpos() function : usage variations - pass different data types to $haystack arg
16 * Pass iconv_strrpos() different data types as $haystack argument to test behaviour
48 // int data
54 // float data
61 // null data
65 // boolean data
71 // empty data
75 // string data
80 // object data
83 // undefined data
[all …]
H A Diconv_strrpos_variation2.phpt2 Test iconv_strrpos() function : usage variations - Pass different data types to $needle arg
16 * Pass iconv_strrpos() different data types as $needle argument to test behaviour
48 // int data
54 // float data
61 // null data
65 // boolean data
71 // empty data
75 // string data
80 // object data
83 // undefined data
[all …]
/PHP-7.1/ext/mbstring/tests/
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_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_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 …]
H A Dmb_strrpos_variation2.phpt2 Test mb_strrpos() function : usage variations - Pass different data types to $needle arg
16 * Pass mb_strrpos() different data types as $needle 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 …]
/PHP-7.1/ext/openssl/tests/
H A Dbug74159.phpt30 $data = '';
31 while (strlen($data) < 0xfffff) {
36 $data .= $buffer;
48 function streamWrite($stream, $data) : int {
49 return fwrite($stream, $data);
85 $data = str_repeat("a", 0xfffff);
88 while(!empty($data)) {
89 $written = streamWrite($fp, $data);
91 $data = substr($data, $written);

Completed in 61 milliseconds

12345678910>>...92