ZendFramework2のデータベース接続動作について

不言
リリース: 2023-04-01 11:00:02
オリジナル
1496 人が閲覧しました

この記事では、データベースに接続するための ZendFramework2 の操作を主に紹介し、ZendFramework2 のデータベースに接続するための具体的な手順、設定方法、関連する操作スキル、および注意事項を完全な例の形式で分析します。この記事を参照してください。

この例では、ZendFramework2 がデータベースに接続する操作を説明します。詳細は次のとおりです。

zf1 に比べて、zf2 はデータベースの操作が容易であると個人的に感じていますが、フィールドのエイリアス操作は簡単です。データベースは一度設定を書いてしまえば、基本的には移動する必要はありませんが、それでも1の設定より面倒です。

同じ文ですが、ソースコードを見てみましょう。 。 。

これは Model/Student.php

public function getServiceConfig()
{
    return array(
      'factories' => array(
        'Student\Model\StudentTable' => function($sm) {
          $tableGateway = $sm->get('StudentTableGateway');
          $table = new StudentTable($tableGateway);
          return $table;
        },
        'StudentTableGateway' => function ($sm) {
          $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
          $resultSetPrototype = new ResultSet();
          $resultSetPrototype->setArrayObjectPrototype(new Student());
          return new TableGateway('cc_user', $dbAdapter, null, $resultSetPrototype);//table Name is cc_user
        },
      ),
    );
}
ログイン後にコピー

StudentTable.php Model/StudentTable.php

namespace Student\Model;
class Student
{
  public $id;
  public $name;
  public $phone;
  public $mark;
  public $email;
  public function exchangeArray($data)//别名
  {
    $this->id   = (!empty($data['cc_u_id'])) ? $data['cc_u_id'] : null;
    $this->name = (!empty($data['cc_u_name'])) ? $data['cc_u_name'] : null;
    $this->phone = (!empty($data['cc_u_phone'])) ? $data['cc_u_phone'] : null;
    $this->mark = (!empty($data['cc_u_mark'])) ? $data['cc_u_mark'] : null;
    $this->email = (!empty($data['cc_u_email'])) ? $data['cc_u_email'] : null;
  }
}
ログイン後にコピー
内に

<?php
namespace Student\Model;
use Zend\Db\ResultSet\ResultSet;
use Zend\Db\TableGateway\TableGateway;
use Zend\Db\Sql\Select;
use Zend\Paginator\Adapter\DbSelect;
use Zend\Paginator\Paginator;
class StudentTable
{
  protected $tableGateway;
  protected $table=&#39;cc_user&#39;;
  public function __construct(TableGateway $tableGateway)
  {
    $this->tableGateway = $tableGateway;
  }
  public function fetchAll($paginated)
  {//分页
     if($paginated) {
      // create a new Select object for the table album
      $select = new Select(&#39;cc_user&#39;);
      // create a new result set based on the Student entity
      $resultSetPrototype = new ResultSet();
      $resultSetPrototype->setArrayObjectPrototype(new Student());
      // create a new pagination adapter object
      $paginatorAdapter = new DbSelect(
        // our configured select object
        $select,
        // the adapter to run it against
        $this->tableGateway->getAdapter(),
        // the result set to hydrate
        $resultSetPrototype
      );
      $paginator = new Paginator($paginatorAdapter);
      return $paginator;
    }
    $resultSet = $this->tableGateway->select();
    return $resultSet;
  }
  public function getStudent($id)
  {
    $id = (int) $id;
    $rowset = $this->tableGateway->select(array(&#39;id&#39; => $id));
    $row = $rowset->current();
    if (!$row) {
      throw new \Exception("Could not find row $id");
    }
    return $row;
  }
  public function deleteStudent($id)
  {
    $this->tableGateway->delete(array(&#39;id&#39; => $id));
  }
  public function getLIValue(){
    return $this->tableGateway->getLastInsertValue();
  }
}
ログイン後にコピー

student.php を追加します。

Student/IndexController.php はデータベースを呼び出します

public function indexAction(){
    /* return new ViewModel(array(
      &#39;students&#39; => $this->getStudentTable()->fetchAll(), //不分页
    ));*/
    $page=$this->params(&#39;page&#39;);//走分页 在model.config.php里面设置:
/*      model.config.php      
&#39;defaults&#39; => array(
 &#39;controller&#39; => &#39;Student\Controller\Index&#39;,
 &#39;action&#39;   => &#39;index&#39;,
 &#39;page&#39;=>&#39;1&#39;,
),
*/
    $paginator = $this->getStudentTable()->fetchAll(true);
    // set the current page to what has been passed in query string, or to 1 if none set
    $paginator->setCurrentPageNumber((int)$this->params()->fromQuery(&#39;page&#39;, $page));
    // set the number of items per page to 10
    $paginator->setItemCountPerPage(10);
    return new ViewModel(array(
      &#39;paginator&#39; => $paginator //模板页面调用的时候的名字
    ));
  //print_r($this->getStudentTable()->fetchAll());
}
ログイン後にコピー

テンプレート ページで呼び出します

<?php foreach ($this->paginator as $student) : ?>
<tr id="<?php echo $this->escapeHtml($student->id);?>">
  <td><?php echo $this->escapeHtml($student->id);?></td>
  <td><?php echo $this->escapeHtml($student->name);?></td>
  <td><?php echo $this->escapeHtml($student->phone);?></td>
  <td><?php echo $this->escapeHtml($student->email);?></td>//应用了在Student.php的别名
  <td><?php echo $this->escapeHtml($student->mark);?></td>
    <td><a href=&#39;#&#39;  class=&#39;icol-bandaid editUserInfo&#39;></a>  
      <a href=&#39;#&#39; class=&#39;icol-key changePwd&#39;></a>  
      <a herf=&#39;#&#39;  class=&#39;icol-cross deleteStud&#39;></a>
    </td>
  </tr>
<?php endforeach;?>
ログイン後にコピー

以上がこの記事の全内容です。皆さんの学習に役立つことを願っています。関連コンテンツの詳細については、PHP 中国語ネットにご注目ください。

関連する推奨事項:

Zend Framework での Bootstrap クラスの使用状況分析

Yii2 フレームワーク実装のデータベース共通操作分析

Zend Framework の実装方法についてセッションは memcache に保存されます

#

以上がZendFramework2のデータベース接続動作についての詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!