【PHP】日付のよく使用する表記パターンの関数
2023-06-07<日付表記パターン> phpStart function viewDate($date,$style = ""){ $WEEK = array("日","月","火","水","木","金","土"); if(isset($date)){ $date = substr($date,0,10); $date = str_replace("/","-",$date); if($date != "0000-00-00"){ list($y,$m,$d) = explode("-",$date); $w = date("w", strtotime($dat...