Veuillez vous assurer que l'extension PDO est correctement chargée avant de regarder ceci.
La méthode consiste à éditer le php.ini
Ajoutez manuellement les deux lignes suivantes (sans point-virgule ;) :
extension=php_pdo.dll
extension=php_pdo_mysql.dll
puis ajoutez extension_dir
Pointez sur le répertoire où se trouvent php_pdo.dll et php_pdo_mysql.dll, par exemple
extension_dir = "C:php5ext"
OK, c'est parti..
index.php La page d'accueil du site est également la seule entrée
Le code PHP est le suivant :
<?php
//...Omettre
$params = array ('host' => '127.0.0.1',
'nom d'utilisateur' => 'racine',
'mot de passe' => '123456',
'nomdb' => 'happycms');
$db = Zend_Db::factory('pdoMysql', $params);
Zend::register('db', $db);
?>
lib/App/Article.php
Le code PHP est le suivant :
<?php
classe App_Article {
base de données $ privée ;
fonction App_Article() {
$this->db = Zend::registry('db');
}
fonction listeTout() {
$result = $this->db->query('SELECT * FROM article');
$lignes = $result->fetchAll();
Zend::dump($lignes);
}
fonction listeByCategory() {
}
//...omis
}
?>
Le code PHP est le suivant :
ArticleController.php
la classe articleController étend Zend_Controller_Action {
vue privée ;
privé $article ;
fonction __construct() {
$this->view = Zend::registry('view');
$this->article = new App_Article();
}
fonction publique listAllAction() {
$this->article->listAll();
$this->view->title='Afficher les articles';
echo $this->view->render(TPL_DIR.'/tplView.php');
}
fonction __call($action, $arguments)
{
$this->_redirect('./');
print_r($action);
print_r($arguments);
}
}
?>
Visitez http://happycms/article/listall
et obtenez le résultat suivant :
array(1) {
[0] => tableau(15) {
["idarticle"] => chaîne(1) "1"
["categoryid"] => chaîne (1) "0"
["titrearticle"] => string(4) "test"
["articled'où"] => string(3) "sdf"
["mots-clésarticle"] => string(5) "sdfds"
["description de l'article"] => string(4) "test"
["corps de l'article"] => string(9) "sffsdfsdf"
["authorname"] => string(8) "haohappy"
["authoremail"] => string(11) " [email protected] "
["isticky"] => chaîne(1) "0"
["est recommandé"] => string(1) "0"
["includeattachment"] => chaîne (1) "0"
["addtime"] => chaîne(19) "0000-00-00 00:00:00"
["lastedittime"] => chaîne (19) "0000-00-00 00:00:00"
["checktime"] => chaîne (19) "0000-00-00 00:00:00"
}