2013-09-06から1日間の記事一覧

左寄せで0パディングする

php

1234 -> 12340000のようにする str_pad( 1234, 8, 0, STR_PAD_RIGHT )または sprintf( "%0-8s", 1234 )と記述。 sprintfは-で左寄せに。