(c) H.Sawada (c) T.Sato (c) M.Koitabashi (c) T.Ashizawa

おしらせ おしらせ一覧 おしらせの募集

$html_news
___EOD___; function format_news($news) { $html = array(); $rows = preg_grep("/./", explode("\r\n", $news)); $today = strtotime(date("Y-m-d")); foreach ($rows as $row) { list($ctg, $text, $url, $pubdate, $closedate, $note, $attach, $newdate) = explode("\t", $row); if ($today < strtotime($pubdate) || ($closedate && strtotime($closedate) < $today)) continue; //掲載期間外は非表示 if (strstr($ctg, "募集")) $ctg = "募集"; //サブカテゴリは公募のページで使う $html_date = !empty($newdate) ? "" . str_replace("-", ".", $newdate) . "更新" : "" . str_replace("-", ".", $pubdate) . "掲載"; if ($url) { $html_note = !empty($note) ? "
{$note}" : ""; $html_attach = !empty($attach) ? " {$attach}" : ""; $html[] = "
[{$ctg}]
{$text}{$html_attach} {$html_date}{$html_note}
"; } else { $html[] = "
[{$ctg}]
{$text} {$html_date}{$html_note}
"; } } return implode("\r\n", $html); } ?>