echo sprintf('%02d', 3); //03
echo sprintf('%03d', 3); //003
echo sprintf('4桁で出力すると%04dです', 3); //4桁で出力すると0004です


▲上に戻る