我似乎无法把一些行动结合起来,特别是这一法典线:
$messages = Request::factory( messages/get_messages )->execute()->response;
当我在浏览器上玩.时,Kohaana没有发出以下警告。
接收通知: 未界定的财产:答复:
The full line of code for this reads...
<?php defined( SYSPATH ) or die( No direct script access. );
class Controller_Profile extends Controller_Application
{
public function action_index()
{
$content = View::factory( profile/public )
->set( username , Test User )
->bind( messages , $messages);
$messages = Request::factory( messages/get_messages )->execute()->response;
$this->template->content = $content;
}
}
由于我通过,Beginners Guide通过Jason D. Straughan,我已经解决了几个分歧,但从中汲取了一个空白。 这里的任何要点都会受到赞赏。
该书第81页上载有这一行文。