Home
last modified time | relevance | path

Searched refs:pieces (Results 1 – 15 of 15) sorted by relevance

/php-src/ext/standard/tests/strings/
H A Djoin_basic.phpt9 $pieces = array(1, 2, 3, 4);
11 // pieces as array with numeric values
12 var_dump( join($glue, $pieces) );
14 // pieces as array with strings values
16 $pieces = array("Red", "Green", "Blue", "Black", "White");
17 var_dump( join($glue, $pieces) );
19 // pieces as associative array (numeric values)
20 $pieces = array("Hour" => 10, "Minute" => 20, "Second" => 40);
22 var_dump( join($glue, $pieces) );
24 // pieces as associative array (string/numeric values)
[all …]
H A Djoin_variation5.phpt6 * test join() by passing pieces as array containing sub array(s)
12 // pieces as array containing sub array
15 // glue as array & pieces as array containing sub array
22 // numeric value as glue, pieces as array containing sub array
25 // using directly the sub_array as pieces
H A Djoin_variation6.phpt16 $pieces = array("Red", "Green", "White", 1);
17 var_dump( join($glues[0], $pieces) );
18 var_dump( join($glues[1], $pieces) );
H A Dexplode_variation4.phpt9 $pieces = explode(" p", $pizza);
10 var_dump($pieces);
H A Djoin_error1.phpt2 Test join() function : usage variations - unexpected values for 'pieces' argument(Bug#42789)
6 * test join() by passing different unexpected value for pieces argument
78 // when $pieces argument is supplied with different values
79 echo "\n--- Testing join() by supplying different values for 'pieces' argument ---\n";
83 $pieces = $values [$index];
86 var_dump(join($glue, $pieces));
102 --- Testing join() by supplying different values for 'pieces' argument ---
H A Dimplode_error.phpt12 /* NULL as pieces */
21 var_dump(implode(12, "pieces"));
H A Djoin_variation4.phpt24 $pieces = array (
42 var_dump(join($glues[$index], $pieces));
H A Djoin_variation1.phpt11 $pieces = array("element1", "element2");
75 var_dump(join($glue, $pieces));
H A Djoin_variation3.phpt2 Test join() function : usage variations - different values for 'pieces' argument
6 * test join() by giving different pieces values
H A Dimplode_variation.phpt23 $pieces = array(
45 /* loop through to display a string containing all the array $pieces in the same order,
51 var_dump(implode($glue, $pieces));
/php-src/win32/build/
H A Dconfutils.js2279 var pieces, stuff_to_crack, chunk;
2287 pieces = item[0];
2293 if (typeof(pieces) == "string" && pieces.charCodeAt(0) == 34) {
2297 stuff_to_crack = pieces;
2298 pieces = "";
2306 pieces += chunk;
2309 pieces += '" "';
2313 outfile.WriteLine("#define " + keys[i] + " " + pieces);
/php-src/ext/standard/
H A Dstring.c973 numelems = zend_hash_num_elements(pieces); in php_implode()
979 ZEND_HASH_FOREACH_VAL(pieces, tmp) { in php_implode()
988 ZEND_HASH_FOREACH_VAL(pieces, tmp) { in php_implode()
1056 zend_array *pieces = NULL; in PHP_FUNCTION() local
1061 Z_PARAM_ARRAY_HT_OR_NULL(pieces) in PHP_FUNCTION()
1064 if (pieces == NULL) { in PHP_FUNCTION()
1075 pieces = arg1_array; in PHP_FUNCTION()
1089 zval *pieces; variable
1112 zval *pieces; variable
1115 Z_FLF_PARAM_ARRAY_OR_NULL(2, pieces);
[all …]
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst193 information gained at runtime. JITs are very complex pieces of software, so this book will likely
/php-src/ext/mbstring/libmbfl/
H A DLICENSE31 it if you want it; that you can change the software and use pieces of
/php-src/ext/bcmath/libbcmath/
H A DLICENSE32 it if you want it; that you can change the software and use pieces of

Completed in 57 milliseconds