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.
CSS には 10 個のスパンがあり、すべて幅が異なります: span1、span2、span3...、span10。
投稿の配列をループして、すべての投稿をランダムなスパン名で表示したいと思います...
HTMLでスパンをハードコーディングせず、複数のクエリを使用せずに、どうすればこのようなことを達成できますか?
<?php $posts=array('a','b','c'); $rand=range(1,10); shuffle($rand); $count=current($rand); foreach($posts as $p){ echo '<span style="css'.$rand[$count].'">'.$p.'</span>'; $count=next($rand); }