パーマリンク(主キーを非表示にして重要な文字列に置き換える)に関する段落を読みましたが、このコードがどのように機能するか理解できません。
public function executePermalink($request)
{
$article = ArticlePeer::retrieveBySlug($request->getParameter('slug');
$this->forward404Unless($article); // Display 404 if no article matches slug
$this->article = $article; // Pass the object to the template
}
このコードは典型的な推進力ですよね?教義のためにそれのようなものがありますか?私はretrieveBySlug()関数を書く必要がありますか?書き方がわかる例はありますか?
どうもありがとう