Lines Matching refs:glue
5 /* Prototype: string implode ( string $glue, array $pieces );
7 array elements in the same order, with the glue string between each element.
18 /* loop to output string with ', ' as $glue, using implode() */
24 echo "\n*** Testing implode() with variations of glue ***\n";
51 with the $glue string between each element */
53 foreach($glues as $glue) {
55 var_dump( implode($glue, $pieces) );
103 /* only glue */
104 var_dump( implode("glue") );
107 var_dump( implode("glue",1234) );
110 var_dump( implode("glue", NULL) );
115 /* integer as glue */
118 /* NULL as glue */
122 var_dump( implode("glue", "pieces", "extra") );
189 *** Testing implode() with variations of glue ***