Tuesday, April 9, 2013

How to repeat a string n times in PHP?

Question
How to repeat a string n times in PHP?
Answer
<?php
echo str_repeat(" www.maxergyinfotech.com ", 30);
?>
Explanation
This function will repeat a particular string 30times and display on the screen

Share/Bookmark

No comments:

Post a Comment