Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現時点では、次のような番号付けシステムがあります。
使用:
<?php echo $slide->counter; ?>
01 02 03 04 05
ゼロを取り除くために上記のphpに何を追加して、次のように表示できますか:
1 2 3 4 5
これはうまくいくはずです...
printf('%d', $slide->counter);
<?php echo (int)$slider->counter; ?>