karakter cetak php x kali

str_repeat( string $string , int $times )

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

// 10000
Yoshkinawa