Answers for "php print character x times"

PHP
0

php print character x times

str_repeat( string $string , int $times )

// example
echo '1' . str_repeat( '0' , 4 );

// 10000
Posted by: Guest on May-20-2021

Browse Popular Code Answers by Language