Lines Matching refs:str_repeat
2 Test str_repeat() function
7 echo "*** Testing str_repeat() with possible strings ***";
23 echo "\n--- str_repeat() of '$input' ---\n" ;
26 echo str_repeat($input, $n)."\n";
32 str_repeat($input[0], -1); // Invalid arg for multiplier
40 *** Testing str_repeat() with possible strings ***
41 --- str_repeat() of 'a' ---
47 --- str_repeat() of 'foo' ---
53 --- str_repeat() of 'barbazbax' ---
59 --- str_repeat() of '%0' ---
65 --- str_repeat() of '\0' ---
71 --- str_repeat() of '1' ---
77 --- str_repeat() of '4' ---
83 --- str_repeat() of '1.23' ---
89 --- str_repeat() of '' ---
95 --- str_repeat() of ' ' ---
103 str_repeat(): Argument #2 ($times) must be greater than or equal to 0