zf index.php

今天学习了一下zf

<?php
set_include_path('./library');//根目录下的库文件
require_once('Zend/Loader.php');
Zend_Loader::registerAutoload();

$view = new Zend_View;
$view->setScriptPath('./Application/Views');  //放显示的文件的地方
Zend_Registry::set('view', $view);              //注册对象

//下面这些的作用是在子目录下。新手不管它,能用就行
$router = new Zend_Controller_Router_Rewrite();
$controller = Zend_Controller_Front::getInstance();
$controller->setRouter($router);

$controller->setControllerDirectory('./Application/Controllers');//简单的说是放我们设计php控制文件的地方
$controller->dispatch();

?>
class IndexController extends Zend_Controller_Action
{
    public function indexAction()
    {
echo "test........";
echo $id;
    }
public function showAction(){

echo "tddd";
echo $id;
}
}

你可能感兴趣的:(PHP,Zend)