php print character x times code example
Example: php print character x times
str_repeat( string $string , int $times )
// example
echo '1' . str_repeat( '0' , 4 );
// 10000
str_repeat( string $string , int $times )
// example
echo '1' . str_repeat( '0' , 4 );
// 10000