[PHP 7.4.11] 一定の桁数までゼロ埋め処理

ところで、ゼロ埋めってどうやるのか?

$id = 2;
$order_id = sprintf("%05d", $id);

echo $id . "<br>";
echo $order_id;

sprintfを使えばいいのね。なるほど。