Source Code:
(back to article)
<?php $input = "Hello"; $multiplier = 3; $output = str_repeat($input, $multiplier); echo $output; // Output: HelloHelloHello ?>
Result:
Report an issue