0で埋め尽くされた○桁の表示を行う

管理番号 : 000006 のような0で埋め尽くされた表示を実現する

<?php
$id = 35;
echo sprintf("%06d", $number);

/*
$ php hoge.php
000035
*/
?>