Lines Matching refs:glue
14 /* loop to output string with ', ' as $glue, using implode() */
20 echo "\n*** Testing implode() with variations of glue ***\n";
45 with the $glue string between each element */
47 foreach($glues as $glue) {
50 var_dump(implode($glue, $pieces));
111 /* only glue */
113 var_dump( implode("glue") );
120 var_dump( implode("glue",1234) );
127 var_dump( implode("glue", NULL) );
139 /* integer as glue */
146 /* NULL as glue */
218 *** Testing implode() with variations of glue ***