MVC コードの記述:
Controller コードの記述:
class IndexController extends Zend_Controller_Action
{
function init()
{
$this->registry = Zend_Registry::getInstance();
$this- > ;view = $this->registry['view'];
$this->view->baseUrl = $this->_request->getBaseUrl();
}
functionindexAction()
{
$this->view->word=" スパーズが大好きです";
echo $this->view->render("index.html");
}
function addAction(){
//POST からの値の場合は追加します。それ以外の場合は追加ページを表示します
}
}
?>
コントロールにコンテンツを書き込みます: $this-> view->word="ggg";
$this->view->render("index.html");
---->index.html echo $this->word;
アプリケーション->config.ini
[一般]
db.adapter=PDO_MYSQL
db.config.host=localhost
db.config.username=root
db.config.password=
db.config.dbname=think_zw
構成ファイルをフレームワークに導入します
//データベースパラメータを構成し、データベースに接続します
$config=new Zend_Config_Ini('./application/config/config.ini',null, true);
Zend_Registry::set(' config ',$config);
$dbAdapter=Zend_Db::factory($config->gt;general->db->adapter,$config->gt;general->db->gt;config->toArray( ) );
$dbAdapter->query('SET NAMES UTF8');
Zend_Db_Table::setDefaultAdapter($dbAdapter);
Zend_Registry::set('dbAdapter',$dbAdapter);
シングルエントリモード: localhost/index/add/インデックスモジュールの下の追加メソッドにアクセスします
関数 addAction(){} (IndexController.php 内)
デフォルトのアクセスは、インデックスモジュールの下のインデックスメソッドです
モジュールモデルに別のmessage.phpを作成します
class Message extends Zend_Db_Table
{
protected $_name ="message";
protected $_primary = 'id';
}
?>
モジュールインスタンス変換:
functionindexAction()
{
$message=new message() // データベース クラスをインスタンス化します
//データベースの内容を取得します
$this->view->messages=$message->fetchAll()->toArray();
echo $this->view->render('index.phtml');// テンプレートを表示
}
messages as $message): ?>
*******************
データの変更と削除
kk
ll
function editAction(){
$message = new Message();
$db = $message->getAdapter();
if(strto lower($_SERVER['REQUEST_METHOD ' ])=='post'){
$id = $this->_request->getPost('id');
$cid = $this->_request->getPost('cid'); $title = $this->_request->getPost('title');
$set = array(
'cid'=>$cid,
'title'=>$title
);
$ where = $db->quoteInto('id = ?',$id);
//データを更新します
$message->update($set,$where);
unset($set);
echo ' データ改造成功! return';
}else{
$id = $this->_request - >getParam('id');
$this->view->messages = $message->fetchAll('id='.$id)->toArray();
echo $this-> ; view->render('edit.phtml');
}
}
$message = new Message();
$id = (int)$this->_request->getParam('id');
if($id > 0){
$where = 'id = ' . $id;
$message->delete($where);
}
echo 'データが正常に削除されました。 Return';
}
例外が発生しました:
致命的なエラー: キャッチされない例外 'Zend_Controller_Dispatcher_Exception' とメッセージ '無効なコントローラが指定されました (index.php)' が
解決策: Index.php の
$frontController =Zend_Controller_Front::getInstance(); の後に
$frontController->setParam('useDefaultControllerAlways', true);
*******
id/3 は前の ?id=3 と同じです