PHP Drukuj znak x razy
str_repeat( string $string , int $times )
// example
echo '1' . str_repeat( '0' , 4 );
// 10000
Yoshkinawa
str_repeat( string $string , int $times )
// example
echo '1' . str_repeat( '0' , 4 );
// 10000