ウェブ家の備忘録

ウェブデザイナーの備忘録

最近組み込んだものメモ

スマホタブレット・PCで出力分けする際に便利。


<?php
$const = [
 '01' => [
  'title'   => 'タイトル',
  'content' => '内容',
  'etc'     => 'その他'
 ],
 '' => [
  'title'   => '',
  'content' => '',
  'etc'     => ''
 ],
 'NN' => [
  'title'   => '',
  'content' => '',
  'etc'     => ''
 ]
];

//個別設定
$style='text-align: center;';

//出力
for($i=1;$i<99;$i++){
  echo '<hr>';
  if(isset($const[sprintf('%02d', $i)]['title'])){
    echo '<div style=\''.$style.'\'>' . $const[sprintf('%02d', $i)]['title'] . '</div>';
  }else{break;}
}
?>