Repeat String X Times in PHP
php repeat string
<?php
echo str_repeat("Hello world!", 3); //Hello world!Hello world!Hello world!
?>
Example
Repeat the string "Wow" 13 times:
<?php
echo str_repeat("Wow",13);
?>
<?php
echo str_repeat("Hello world!", 3); //Hello world!Hello world!Hello world!
?>
<?php
echo str_repeat("Wow",13);
?>
In this page (written and validated by A. Gawali) you learned about . What's Next? If you are interested in completing PHP tutorial, we encourage you simply to start here: PHP Tutorial.
Share On: |