2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【PHP】0埋め

Posted at
echo sprintf('%02d', 1); // 01
echo sprintf('%03d', 1); // 001
echo sprintf('あなたのIDは%04dです', 1); // あなたのIDは0001です

参考
PHPで0埋めをする2つの方法- sprintf関数とstr_pad関数

2
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?