パンプキンスパイスラテ

IT系のことが多めの日記帳です

2008-09-30から1日間の記事一覧

CakePHPでミニブログをつくる・その3

見た目を綺麗にする viewファイルを修正 app/views/posts/index.thtml <div class="posts"> <h2>List Posts</h2> <table cellpadding="0" cellspacing="0"> <tr> <th>Id</th> <th>Text</th> <th>Keyword</th> <th>Created</th> <th>Modified</th> <th>Delflg</th> <th>Actions</th> </tr> <tr> <td></td></tr></table></div>

CakePHPでミニブログをつくる・その4

入力テキストにURLが含まれていたら自動でリンクする app/config/bootstrap.php に独自関数を記述。 //オートリンク function autoLink($string){ $text = htmlspecialchars($string, ENT_QUOTES); $text = preg_replace('/(https?:\/\/[-_.!~*\'()a-zA-Z0-9…