プログラム関連の記事2
テスト
普通の文章
斜字体hello php
echo 'hello php'
class
function redirect($category){ global $id; $url = '/'.$category.'?id='.$id; header('Location: ' . $url, true , 301); exit; } $Article = $AMap->find($id); if($Article->category !== $category){ redirect($Article->category); } $tags = $TMap->findByArticle($Article->article_id); $comments = $CMap->findByArticle($Article->article_id); $site_title = str_replace(" ", "_", $Article->title);