Home
last modified time | relevance | path

Searched refs:multi (Results 1 – 25 of 93) sorted by relevance

1234

/PHP-8.2/ext/standard/tests/strings/
H A Dhtmlentities21.phpt136 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
139 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
142 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
145 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
148 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
151 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
154 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
157 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
160 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
163 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
[all …]
H A Dhtmlentities23.phpt31 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
38 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
45 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
52 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
59 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
66 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
73 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
80 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
87 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
94 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
[all …]
H A Dstrrpos_variation3.phpt2 Test strrpos() function : usage variations - multi line heredoc string for 'haystack' argument
5 /* Test strrpos() function by passing multi-line heredoc string for haystack and
10 echo "-- With heredoc string containing multi lines --\n";
26 -- With heredoc string containing multi lines --
H A Dstripos_variation3.phpt2 Test stripos() function : usage variations - multi line heredoc string for 'haystack' argument
5 /* Test stripos() function by passing multi-line heredoc string for haystack and
10 echo "-- With heredoc string containing multi lines --\n";
26 -- With heredoc string containing multi lines --
H A Dhtmlentities22.phpt256 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
259 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
262 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
265 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
268 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
271 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
274 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
277 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
280 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
283 Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings othe…
[all …]
H A Dstrripos_variation3.phpt2 Test strripos() function : usage variations - multi line heredoc string for 'haystack' argument
5 /* Test strripos() function by passing multi-line heredoc string for haystack and
10 echo "-- With heredoc string containing multi lines --\n";
36 -- With heredoc string containing multi lines --
H A Dstrrchr_variation3.phpt2 Test strrchr() function : usage variations - multi line heredoc string for 'haystack'
5 /* Test strrchr() function by passing multi-line heredoc string for haystack and
/PHP-8.2/ext/curl/tests/
H A Dcurl_postfields_array.phpt2 CURLOPT_POSTFIELDS with multi-value fields
19 'multi' => [
58 Content-Disposition: form-data; name="multi"
62 Content-Disposition: form-data; name="multi"
H A Dcurl_multi_strerror_001.phpt14 string(20) "invalid multi handle"
/PHP-8.2/ext/curl/
H A Dmulti.c63 CURLM *multi; in PHP_FUNCTION() local
66 multi = curl_multi_init(); in PHP_FUNCTION()
67 if (UNEXPECTED(multi == NULL)) { in PHP_FUNCTION()
73 mh->multi = multi; in PHP_FUNCTION()
103 error = curl_multi_add_handle(mh->multi, ch->cp); in PHP_FUNCTION()
164 error = curl_multi_remove_handle(mh->multi, ch->cp); in PHP_FUNCTION()
230 error = curl_multi_perform(mh->multi, &still_running); in PHP_FUNCTION()
327 curl_multi_remove_handle(mh->multi, ch->cp); in PHP_FUNCTION()
458 error = curl_multi_setopt(mh->multi, option, lval); in _php_curl_multi_setopt()
535 if (!mh->multi) { in curl_multi_free_obj()
[all …]
/PHP-8.2/ext/standard/tests/array/
H A Darray_rand_variation3.phpt6 * Test behaviour of array_rand() function when multi-dimensional array
10 echo "*** Testing array_rand() : with multi-dimensional array ***\n";
12 // initialise the multi-dimensional array
40 // calling array_rand() function with multi-dimensional array
43 // looping to test array_rand() with each sub-array in the multi-dimensional array
56 *** Testing array_rand() : with multi-dimensional array ***
H A Darray_diff_key_variation8.phpt2 Test array_diff_key() function : usage variation - Passing multi-dimensional array
26 echo "\n-- Testing array_diff_key() function with multi dimensional array --\n";
33 -- Testing array_diff_key() function with multi dimensional array --
H A Darray_diff_ukey_variation5.phpt2 Test array_diff_ukey() function : usage variation - Passing multi-dimensional array
26 echo "\n-- Testing array_diff_ukey() function with multi dimensional array --\n";
33 -- Testing array_diff_ukey() function with multi dimensional array --
H A Dshuffle_variation2.phpt6 * Test behaviour of shuffle() function when multi-dimensional array is
10 echo "*** Testing shuffle() : with multi-dimensional array ***\n";
12 // initialise the multi-dimensional array
24 // calling shuffle() function with multi-dimensional array
30 // looping to test shuffle() with each sub-array in the multi-dimensional array
44 *** Testing shuffle() : with multi-dimensional array ***
H A Darray_merge_variation8.phpt2 Test array_merge() function : usage variations - multi-dimensional arrays
6 * Test array_merge() with multi-dimensional arrays
H A Darray_values_variation4.phpt2 Test array_values() function : usage variations - multi-dimensional arrays
9 * 3. Passed an infinitely recursive multi-dimensional array
/PHP-8.2/Zend/tests/
H A Dforeach_list_001.phpt20 $multi = array(
25 foreach ($multi as list(list($a, $b), list($c, $d))) {
29 foreach ($multi as $key => list(list($a, $b), list($c, $d))) {
/PHP-8.2/ext/mbstring/tests/
H A Dsimpletest.phpt2 Simple multi-byte print test (EUC-JP)
10 * Test basic PHP functions to check if it works with multi-byte chars
/PHP-8.2/ext/phar/tests/
H A Dcreate_path_error.phpt32 "Font\xE5\x84\xB7\xE9\xBB\x91pro.ttf", //two valid multi-byte characters
34 "Font\xE9\xBBpro.ttf", //Invalid multi-byte character - missing last byte
35 "Font\xBB\x91pro.ttf", //Invalid multi-byte character - missing first byte
36 "Font\xC0\xAFpro.ttf", //Invalid multi-byte character - invalid first byte
37 "Font\xF0\x80\x90\x90pro.ttf", //Invalid multi-byte character - surrogate pair code point
/PHP-8.2/ext/dom/lexbor/patches/
H A D0001-Patch-utilities-and-data-structure-to-be-able-to-gen.patch12 utils/lexbor/encoding/multi-byte.py | 2 +-
33 diff --git a/utils/lexbor/encoding/multi-byte.py b/utils/lexbor/encoding/multi-byte.py
35 --- a/utils/lexbor/encoding/multi-byte.py
36 +++ b/utils/lexbor/encoding/multi-byte.py
/PHP-8.2/ext/hash/tests/
H A Dhaval.phpt2 Hash: haval algorithm (multi-vector, multi-pass, multi-width)
/PHP-8.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_multi_stmt_nextrowset.phpt36 foreach (array(false, true) as $multi) {
37 $value = $multi ? 'true' : 'false';
42 $db = new PDO($dsn, $user, $pass, array(PDO::MYSQL_ATTR_MULTI_STATEMENTS => $multi));
49 $db = new PDO($dsn, $user, $pass, array(PDO::MYSQL_ATTR_MULTI_STATEMENTS => $multi));
57 // Switch back to emulated prepares to verify multi statement attribute.
59 // This will fail when $multi is false.
/PHP-8.2/ext/xml/tests/
H A Dbug26614.phpt28 multi
39 multi
50 multi
H A Dbug26614_libxml_gte2_11.phpt29 multi
40 multi
51 multi
H A Dbug26614_libxml_pre2_11.phpt29 multi
40 multi
51 multi

Completed in 48 milliseconds

1234