Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/tests/strings/
H A Djoin_basic.phpt5 /* Prototype : string join( string $glue, array $pieces )
15 $pieces = array(1, 2, 3, 4);
17 // pieces as arry with numeric values
18 var_dump( join($glue, $pieces) );
20 // pieces as array with strings values
22 $pieces = array("Red", "Green", "Blue", "Black", "White");
23 var_dump( join($glue, $pieces) );
26 $pieces = array("Hour" => 10, "Minute" => 20, "Second" => 40);
28 var_dump( join($glue, $pieces) );
31 $pieces = array("Day" => 'Friday', "Month" => "September", "Year" => 2007);
[all …]
H A Djoin_variation6.phpt5 /* Prototype : string join( string $glue, array $pieces )
22 $pieces = array("Red", "Green", "White", 1);
23 var_dump( join($glues[0], $pieces) );
24 var_dump( join($glues[1], $pieces) );
H A Djoin_variation5.phpt5 /* Prototype : string join( string $glue, array $pieces )
12 * test join() by passing pieces as array containing sub array(s)
18 // pieces as array containing sub array
21 // glue as array & pieces as array containing sub array
24 // numeric value as glue, pieces as array containg sub array
27 // using directly the sub_array as pieces
H A Djoin_variation2.phpt2 Test join() function : usage variations - unexpected values for 'pieces' argument(Bug#42789)
5 /* Prototype : string join( string $glue, array $pieces )
12 * test join() by passing different unexpected value for pieces argument
85 // when $pieces argument is supplied with different values
86 echo "\n--- Testing join() by supplying different values for 'pieces' argument ---\n";
90 $pieces = $values [$index];
92 var_dump( join($glue, $pieces) );
105 --- Testing join() by supplying different values for 'pieces' argument ---
H A Dexplode_variation4.phpt14 $pieces = explode(" p", $pizza);
15 var_dump($pieces);
H A Dimplode1.phpt5 /* Prototype: string implode ( string $glue, array $pieces );
26 $pieces = array (
50 /* loop through to display a string containing all the array $pieces in the same order,
55 var_dump( implode($glue, $pieces) );
106 /* int as pieces */
109 /* NULL as pieces */
112 /* pieces as NULL array */
116 var_dump( implode(12, "pieces") );
122 var_dump( implode("glue", "pieces", "extra") );
H A Djoin_error.phpt5 /* Prototype : string join( string $glue, array $pieces )
20 $pieces = array(1, 2);
23 var_dump( join($glue, $pieces, $extra_arg) );
H A Djoin_variation4.phpt5 /* Prototype : string join( string $glue, array $pieces )
31 $pieces = array (
49 var_dump( join($glues[$index], $pieces) );
H A Djoin_variation3.phpt2 Test join() function : usage variations - different values for 'pieces' argument
5 /* Prototype : string join( string $glue, array $pieces )
12 * test join() by giving different pieces values
H A Djoin_variation1.phpt5 /* Prototype : string join( string $glue, array $pieces )
17 $pieces = array("element1", "element2");
94 var_dump( join($glue, $pieces) );
/PHP-7.4/win32/build/
H A Dconfutils.js2270 var pieces, stuff_to_crack, chunk;
2278 pieces = item[0];
2284 if (typeof(pieces) == "string" && pieces.charCodeAt(0) == 34) {
2288 stuff_to_crack = pieces;
2289 pieces = "";
2297 pieces += chunk;
2300 pieces += '" "';
2304 outfile.WriteLine("#define " + keys[i] + " " + pieces);
/PHP-7.4/ext/standard/
H A Dstring.c1183 PHPAPI void php_implode(const zend_string *glue, zval *pieces, zval *return_value) in php_implode() argument
1196 numelems = zend_hash_num_elements(Z_ARRVAL_P(pieces)); in php_implode()
1202 ZEND_HASH_FOREACH_VAL_IND(Z_ARRVAL_P(pieces), tmp) { in php_implode()
1209 ZEND_HASH_FOREACH_VAL_IND(Z_ARRVAL_P(pieces), tmp) { in php_implode()
1273 zval *arg1, *arg2 = NULL, *pieces; in PHP_FUNCTION() local
1290 pieces = arg1; in PHP_FUNCTION()
1294 pieces = arg1; in PHP_FUNCTION()
1299 pieces = arg2; in PHP_FUNCTION()
1306 php_implode(glue, pieces, return_value); in PHP_FUNCTION()
H A Dbasic_functions.c2200 ZEND_ARG_INFO(0, pieces)
/PHP-7.4/ext/mbstring/libmbfl/
H A DLICENSE31 it if you want it; that you can change the software and use pieces of
/PHP-7.4/ext/bcmath/libbcmath/
H A DLICENSE32 it if you want it; that you can change the software and use pieces of

Completed in 126 milliseconds