Lines Matching refs:multiplier
7 /* Prototype: string str_repeat ( string $input, int $multiplier );
8 Description: Returns input repeated multiplier times. multiplier has to be
9 greater than or equal to 0. If the multiplier is set to 0, the function
28 /* variations in string and multiplier as an integer */
37 /* variations in multiplier as well as string to be repeated. Same variant
38 values are used as string to be repeated as well as multiplier */
39 echo "\n\n*** Testing str_repeat() with various strings & multiplier value ***";
42 foreach ( $variations as $multiplier ) {
43 echo "-- after repeating '$multiplier' times is => ";
44 var_dump( str_repeat($input, $multiplier) );
60 var_dump( str_repeat($input[0], -1) ); // Invalid arg for multiplier
133 *** Testing str_repeat() with various strings & multiplier value ***