Answers for "php repeat string"

PHP
1

php repeat string

<?php
echo str_repeat("Hello world!", 3); //Hello world!Hello world!Hello world!
?>
Posted by: Guest on May-01-2022
0

PHP str_repeat — Repeat a string

<?php
echo str_repeat("-=", 10);
?>
Posted by: Guest on May-14-2022

Browse Popular Code Answers by Language