国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

首頁(yè) 后端開(kāi)發(fā) php教程 Zend Framework中的Zend_Db數(shù)據(jù)庫(kù)操作

Zend Framework中的Zend_Db數(shù)據(jù)庫(kù)操作

Jun 08, 2018 pm 02:31 PM
framework zend 數(shù)據(jù)庫(kù)操作

這篇文章主要介紹了Zend Framework入門(mén)教程之Zend_Db數(shù)據(jù)庫(kù)操作,結(jié)合實(shí)例形式詳細(xì)分析了Zend_Db_Adapter的功能及數(shù)據(jù)庫(kù)操作的相關(guān)技巧,需要的朋友可以參考下

本文實(shí)例講述了Zend Framework中Zend_Db數(shù)據(jù)庫(kù)操作方法。分享給大家供大家參考,具體如下:

引言:Zend操作數(shù)據(jù)庫(kù)通過(guò)Zend_Db_Adapter

它可以連接多種數(shù)據(jù)庫(kù),可以是DB2數(shù)據(jù)庫(kù)、MySQli數(shù)據(jù)庫(kù)、Oracle數(shù)據(jù)庫(kù)。等等。

只需要配置相應(yīng)的參數(shù)就可以了。

下面通過(guò)案例來(lái)展示一下其連接數(shù)據(jù)庫(kù)的過(guò)程。

連接mysql數(shù)據(jù)庫(kù)

代碼:

<?php
require_once &#39;Zend/Db.php&#39;;
$params = array(&#39;host&#39;=>&#39;127.0.0.1&#39;,
  &#39;username&#39;=>&#39;root&#39;,
  &#39;password&#39;=>&#39;&#39;,
  &#39;dbname&#39;=>&#39;test&#39;
  );
$db = Zend_Db::factory(&#39;PDO_Mysql&#39;,$params);

點(diǎn)評(píng):

這是連接mysql的代碼案例,提供相應(yīng)的參數(shù)就可以了。連接不同的數(shù)據(jù)庫(kù),提供不同的參數(shù)。下面是sqlite的例子

代碼:

<?php
require_once &#39;Zend/Db.php&#39;;
$params = array(&#39;dbname&#39;=>&#39;test.mdb&#39;);
$db = Zend_Db::factory(&#39;PDO_Sqlite&#39;,$params);

點(diǎn)評(píng):

sqlite明顯參數(shù)不一樣了,只需要提供數(shù)據(jù)庫(kù)名字就可以了。
連接完數(shù)據(jù)庫(kù)之后,就可以查詢數(shù)據(jù)庫(kù)信息以及操作數(shù)據(jù)庫(kù)信息了。
如果查詢呢?

下面是查詢的代碼案例:

<?php
require_once &#39;Zend/Db.php&#39;;
$params = array(&#39;host&#39;=>&#39;127.0.0.1&#39;,
  &#39;username&#39;=>&#39;root&#39;,
  &#39;password&#39;=>&#39;&#39;,
  &#39;dbname&#39;=>&#39;test&#39;
  );
$db = Zend_Db::factory(&#39;PDO_Mysql&#39;,$params);
$sql = $db->quoteInto('SELECT * FROM user WHERE idquery($sql);  //執(zhí)行SQL查詢
$r_a = $result->fetchAll(); //返回結(jié)果數(shù)組
print_r($r_a);

點(diǎn)評(píng):

執(zhí)行完上述代碼,就會(huì)展示出數(shù)據(jù)庫(kù)中前五條記錄的信息。

那么這其中的玄機(jī)是什么呢?

我們來(lái)看一下源碼。

我們來(lái)看看Db.php中的factory方法

public static function factory($adapter, $config = array())
{
    if ($config instanceof Zend_Config) {
      $config = $config->toArray();
    }
    /*
     * Convert Zend_Config argument to plain string
     * adapter name and separate config object.
     */
    if ($adapter instanceof Zend_Config) {
      if (isset($adapter->params)) {
        $config = $adapter->params->toArray();
      }
      if (isset($adapter->adapter)) {
        $adapter = (string) $adapter->adapter;
      } else {
        $adapter = null;
      }
    }
    /*
     * Verify that adapter parameters are in an array.
     */
    if (!is_array($config)) {
      /**
       * @see Zend_Db_Exception
       */
      require_once &#39;Zend/Db/Exception.php&#39;;
      throw new Zend_Db_Exception(&#39;Adapter parameters must be in an array or a Zend_Config object&#39;);
    }
    /*
     * Verify that an adapter name has been specified.
     */
    if (!is_string($adapter) || empty($adapter)) {
      /**
       * @see Zend_Db_Exception
       */
      require_once &#39;Zend/Db/Exception.php&#39;;
      throw new Zend_Db_Exception(&#39;Adapter name must be specified in a string&#39;);
    }
    /*
     * Form full adapter class name
     */
    $adapterNamespace = &#39;Zend_Db_Adapter&#39;;
    if (isset($config[&#39;adapterNamespace&#39;])) {
      if ($config[&#39;adapterNamespace&#39;] != &#39;&#39;) {
        $adapterNamespace = $config[&#39;adapterNamespace&#39;];
      }
      unset($config[&#39;adapterNamespace&#39;]);
    }
    // Adapter no longer normalized- see http://framework.zend.com/issues/browse/ZF-5606
    $adapterName = $adapterNamespace . &#39;_&#39;;
    $adapterName .= str_replace(&#39; &#39;, &#39;_&#39;, ucwords(str_replace(&#39;_&#39;, &#39; &#39;, strtolower($adapter))));
    print_r($adapterName);exit;
    /*
     * Load the adapter class. This throws an exception
     * if the specified class cannot be loaded.
     */
    if (!class_exists($adapterName)) {
      require_once &#39;Zend/Loader.php&#39;;
      Zend_Loader::loadClass($adapterName);
    }
    /*
     * Create an instance of the adapter class.
     * Pass the config to the adapter class constructor.
     */
    $dbAdapter = new $adapterName($config);
    /*
     * Verify that the object created is a descendent of the abstract adapter type.
     */
    if (! $dbAdapter instanceof Zend_Db_Adapter_Abstract) {
      /**
       * @see Zend_Db_Exception
       */
      require_once &#39;Zend/Db/Exception.php&#39;;
      throw new Zend_Db_Exception("Adapter class &#39;$adapterName&#39; does not extend Zend_Db_Adapter_Abstract");
    }
    return $dbAdapter;
}

點(diǎn)評(píng):這個(gè)方法就是核心了,代碼量不多,但是作用很明確,它會(huì)通過(guò)你提供的兩個(gè)參數(shù),自動(dòng)生成相應(yīng)的數(shù)據(jù)庫(kù)連接類(lèi)的對(duì)象。具有一定的靈活性,機(jī)動(dòng)性。

主要是其中的

$adapterName = $adapterNamespace . &#39;_&#39;;
$adapterName .= str_replace(&#39; &#39;, &#39;_&#39;, ucwords(str_replace(&#39;_&#39;, &#39; &#39;, strtolower($adapter))));
/*
 * Load the adapter class. This throws an exception
 * if the specified class cannot be loaded.
 */
if (!class_exists($adapterName)) {
      require_once &#39;Zend/Loader.php&#39;;
      Zend_Loader::loadClass($adapterName);
}

這段代碼會(huì)引入相應(yīng)的數(shù)據(jù)庫(kù)連接類(lèi),比如前面的兩個(gè)例子,就是分別引入了Zend目錄下Db目錄下Adapter目錄下Pdo目錄下的mysql.php類(lèi)。

不同的數(shù)據(jù)庫(kù),會(huì)引入不同的數(shù)據(jù)庫(kù)文件。

我們來(lái)看看mysql.php類(lèi)中的內(nèi)容:

<?php
/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @category  Zend
 * @package  Zend_Db
 * @subpackage Adapter
 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
 * @license  http://framework.zend.com/license/new-bsd   New BSD License
 * @version  $Id: Mysql.php 24593 2012-01-05 20:35:02Z matthew $
 */
/**
 * @see Zend_Db_Adapter_Pdo_Abstract
 */
require_once &#39;Zend/Db/Adapter/Pdo/Abstract.php&#39;;
/**
 * Class for connecting to MySQL databases and performing common operations.
 *
 * @category  Zend
 * @package  Zend_Db
 * @subpackage Adapter
 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
 * @license  http://framework.zend.com/license/new-bsd   New BSD License
 */
class Zend_Db_Adapter_Pdo_Mysql extends Zend_Db_Adapter_Pdo_Abstract
{
  /**
   * PDO type.
   *
   * @var string
   */
  protected $_pdoType = &#39;mysql&#39;;
  /**
   * Keys are UPPERCASE SQL datatypes or the constants
   * Zend_Db::INT_TYPE, Zend_Db::BIGINT_TYPE, or Zend_Db::FLOAT_TYPE.
   *
   * Values are:
   * 0 = 32-bit integer
   * 1 = 64-bit integer
   * 2 = float or decimal
   *
   * @var array Associative array of datatypes to values 0, 1, or 2.
   */
  protected $_numericDataTypes = array(
    Zend_Db::INT_TYPE  => Zend_Db::INT_TYPE,
    Zend_Db::BIGINT_TYPE => Zend_Db::BIGINT_TYPE,
    Zend_Db::FLOAT_TYPE => Zend_Db::FLOAT_TYPE,
    &#39;INT&#39;        => Zend_Db::INT_TYPE,
    &#39;INTEGER&#39;      => Zend_Db::INT_TYPE,
    &#39;MEDIUMINT&#39;     => Zend_Db::INT_TYPE,
    &#39;SMALLINT&#39;      => Zend_Db::INT_TYPE,
    &#39;TINYINT&#39;      => Zend_Db::INT_TYPE,
    &#39;BIGINT&#39;       => Zend_Db::BIGINT_TYPE,
    &#39;SERIAL&#39;       => Zend_Db::BIGINT_TYPE,
    &#39;DEC&#39;        => Zend_Db::FLOAT_TYPE,
    &#39;DECIMAL&#39;      => Zend_Db::FLOAT_TYPE,
    &#39;DOUBLE&#39;       => Zend_Db::FLOAT_TYPE,
    &#39;DOUBLE PRECISION&#39;  => Zend_Db::FLOAT_TYPE,
    &#39;FIXED&#39;       => Zend_Db::FLOAT_TYPE,
    &#39;FLOAT&#39;       => Zend_Db::FLOAT_TYPE
  );
  /**
   * Override _dsn() and ensure that charset is incorporated in mysql
   * @see Zend_Db_Adapter_Pdo_Abstract::_dsn()
   */
  protected function _dsn()
  {
    $dsn = parent::_dsn();
    if (isset($this->_config[&#39;charset&#39;])) {
      $dsn .= &#39;;charset=&#39; . $this->_config[&#39;charset&#39;];
    }
    return $dsn;
  }
  /**
   * Creates a PDO object and connects to the database.
   *
   * @return void
   * @throws Zend_Db_Adapter_Exception
   */
  protected function _connect()
  {
    if ($this->_connection) {
      return;
    }
    if (!empty($this->_config[&#39;charset&#39;])) {
      $initCommand = "SET NAMES &#39;" . $this->_config[&#39;charset&#39;] . "&#39;";
      $this->_config[&#39;driver_options&#39;][1002] = $initCommand; // 1002 = PDO::MYSQL_ATTR_INIT_COMMAND
    }
    parent::_connect();
  }
  /**
   * @return string
   */
  public function getQuoteIdentifierSymbol()
  {
    return "`";
  }
  /**
   * Returns a list of the tables in the database.
   *
   * @return array
   */
  public function listTables()
  {
    return $this->fetchCol(&#39;SHOW TABLES&#39;);
  }
  /**
   * Returns the column descriptions for a table.
   *
   * The return value is an associative array keyed by the column name,
   * as returned by the RDBMS.
   *
   * The value of each array element is an associative array
   * with the following keys:
   *
   * SCHEMA_NAME   => string; name of database or schema
   * TABLE_NAME    => string;
   * COLUMN_NAME   => string; column name
   * COLUMN_POSITION => number; ordinal position of column in table
   * DATA_TYPE    => string; SQL datatype name of column
   * DEFAULT     => string; default expression of column, null if none
   * NULLABLE     => boolean; true if column can have nulls
   * LENGTH      => number; length of CHAR/VARCHAR
   * SCALE      => number; scale of NUMERIC/DECIMAL
   * PRECISION    => number; precision of NUMERIC/DECIMAL
   * UNSIGNED     => boolean; unsigned property of an integer type
   * PRIMARY     => boolean; true if column is part of the primary key
   * PRIMARY_POSITION => integer; position of column in primary key
   * IDENTITY     => integer; true if column is auto-generated with unique values
   *
   * @param string $tableName
   * @param string $schemaName OPTIONAL
   * @return array
   */
  public function describeTable($tableName, $schemaName = null)
  {
    // @todo use INFORMATION_SCHEMA someday when MySQL&#39;s
    // implementation has reasonably good performance and
    // the version with this improvement is in wide use.
    if ($schemaName) {
      $sql = &#39;DESCRIBE &#39; . $this->quoteIdentifier("$schemaName.$tableName", true);
    } else {
      $sql = &#39;DESCRIBE &#39; . $this->quoteIdentifier($tableName, true);
    }
    $stmt = $this->query($sql);
    // Use FETCH_NUM so we are not dependent on the CASE attribute of the PDO connection
    $result = $stmt->fetchAll(Zend_Db::FETCH_NUM);
    $field  = 0;
    $type  = 1;
    $null  = 2;
    $key   = 3;
    $default = 4;
    $extra  = 5;
    $desc = array();
    $i = 1;
    $p = 1;
    foreach ($result as $row) {
      list($length, $scale, $precision, $unsigned, $primary, $primaryPosition, $identity)
        = array(null, null, null, null, false, null, false);
      if (preg_match(&#39;/unsigned/&#39;, $row[$type])) {
        $unsigned = true;
      }
      if (preg_match(&#39;/^((?:var)?char)\((\d+)\)/&#39;, $row[$type], $matches)) {
        $row[$type] = $matches[1];
        $length = $matches[2];
      } else if (preg_match(&#39;/^decimal\((\d+),(\d+)\)/&#39;, $row[$type], $matches)) {
        $row[$type] = &#39;decimal&#39;;
        $precision = $matches[1];
        $scale = $matches[2];
      } else if (preg_match(&#39;/^float\((\d+),(\d+)\)/&#39;, $row[$type], $matches)) {
        $row[$type] = &#39;float&#39;;
        $precision = $matches[1];
        $scale = $matches[2];
      } else if (preg_match(&#39;/^((?:big|medium|small|tiny)?int)\((\d+)\)/&#39;, $row[$type], $matches)) {
        $row[$type] = $matches[1];
        // The optional argument of a MySQL int type is not precision
        // or length; it is only a hint for display width.
      }
      if (strtoupper($row[$key]) == &#39;PRI&#39;) {
        $primary = true;
        $primaryPosition = $p;
        if ($row[$extra] == &#39;auto_increment&#39;) {
          $identity = true;
        } else {
          $identity = false;
        }
        ++$p;
      }
      $desc[$this->foldCase($row[$field])] = array(
        &#39;SCHEMA_NAME&#39;   => null, // @todo
        &#39;TABLE_NAME&#39;    => $this->foldCase($tableName),
        &#39;COLUMN_NAME&#39;   => $this->foldCase($row[$field]),
        &#39;COLUMN_POSITION&#39; => $i,
        &#39;DATA_TYPE&#39;    => $row[$type],
        &#39;DEFAULT&#39;     => $row[$default],
        &#39;NULLABLE&#39;     => (bool) ($row[$null] == &#39;YES&#39;),
        &#39;LENGTH&#39;      => $length,
        &#39;SCALE&#39;      => $scale,
        &#39;PRECISION&#39;    => $precision,
        &#39;UNSIGNED&#39;     => $unsigned,
        &#39;PRIMARY&#39;     => $primary,
        &#39;PRIMARY_POSITION&#39; => $primaryPosition,
        &#39;IDENTITY&#39;     => $identity
      );
      ++$i;
    }
    return $desc;
  }
  /**
   * Adds an adapter-specific LIMIT clause to the SELECT statement.
   *
   * @param string $sql
   * @param integer $count
   * @param integer $offset OPTIONAL
   * @throws Zend_Db_Adapter_Exception
   * @return string
   */
   public function limit($sql, $count, $offset = 0)
   {
    $count = intval($count);
    if ($count <= 0) {
      /** @see Zend_Db_Adapter_Exception */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception("LIMIT argument count=$count is not valid");
    }
    $offset = intval($offset);
    if ($offset < 0) {
      /** @see Zend_Db_Adapter_Exception */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception("LIMIT argument offset=$offset is not valid");
    }
    $sql .= " LIMIT $count";
    if ($offset > 0) {
      $sql .= " OFFSET $offset";
    }
    return $sql;
  }
}

這里又引入了一個(gè)Abstract類(lèi),抽象類(lèi)

<?php
/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @category  Zend
 * @package  Zend_Db
 * @subpackage Adapter
 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
 * @license  http://framework.zend.com/license/new-bsd   New BSD License
 * @version  $Id: Abstract.php 24593 2012-01-05 20:35:02Z matthew $
 */
/**
 * @see Zend_Db_Adapter_Abstract
 */
require_once &#39;Zend/Db/Adapter/Abstract.php&#39;;
/**
 * @see Zend_Db_Statement_Pdo
 */
require_once &#39;Zend/Db/Statement/Pdo.php&#39;;
/**
 * Class for connecting to SQL databases and performing common operations using PDO.
 *
 * @category  Zend
 * @package  Zend_Db
 * @subpackage Adapter
 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
 * @license  http://framework.zend.com/license/new-bsd   New BSD License
 */
abstract class Zend_Db_Adapter_Pdo_Abstract extends Zend_Db_Adapter_Abstract
{
  /**
   * Default class name for a DB statement.
   *
   * @var string
   */
  protected $_defaultStmtClass = &#39;Zend_Db_Statement_Pdo&#39;;
  /**
   * Creates a PDO DSN for the adapter from $this->_config settings.
   *
   * @return string
   */
  protected function _dsn()
  {
    // baseline of DSN parts
    $dsn = $this->_config;
    // don&#39;t pass the username, password, charset, persistent and driver_options in the DSN
    unset($dsn[&#39;username&#39;]);
    unset($dsn[&#39;password&#39;]);
    unset($dsn[&#39;options&#39;]);
    unset($dsn[&#39;charset&#39;]);
    unset($dsn[&#39;persistent&#39;]);
    unset($dsn[&#39;driver_options&#39;]);
    // use all remaining parts in the DSN
    foreach ($dsn as $key => $val) {
      $dsn[$key] = "$key=$val";
    }
    return $this->_pdoType . &#39;:&#39; . implode(&#39;;&#39;, $dsn);
  }
  /**
   * Creates a PDO object and connects to the database.
   *
   * @return void
   * @throws Zend_Db_Adapter_Exception
   */
  protected function _connect()
  {
    // if we already have a PDO object, no need to re-connect.
    if ($this->_connection) {
      return;
    }
    // get the dsn first, because some adapters alter the $_pdoType
    $dsn = $this->_dsn();
    // check for PDO extension
    if (!extension_loaded(&#39;pdo&#39;)) {
      /**
       * @see Zend_Db_Adapter_Exception
       */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception(&#39;The PDO extension is required for this adapter but the extension is not loaded&#39;);
    }
    // check the PDO driver is available
    if (!in_array($this->_pdoType, PDO::getAvailableDrivers())) {
      /**
       * @see Zend_Db_Adapter_Exception
       */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception(&#39;The &#39; . $this->_pdoType . &#39; driver is not currently installed&#39;);
    }
    // create PDO connection
    $q = $this->_profiler->queryStart(&#39;connect&#39;, Zend_Db_Profiler::CONNECT);
    // add the persistence flag if we find it in our config array
    if (isset($this->_config[&#39;persistent&#39;]) && ($this->_config[&#39;persistent&#39;] == true)) {
      $this->_config[&#39;driver_options&#39;][PDO::ATTR_PERSISTENT] = true;
    }
    try {
      $this->_connection = new PDO(
        $dsn,
        $this->_config[&#39;username&#39;],
        $this->_config[&#39;password&#39;],
        $this->_config[&#39;driver_options&#39;]
      );
      $this->_profiler->queryEnd($q);
      // set the PDO connection to perform case-folding on array keys, or not
      $this->_connection->setAttribute(PDO::ATTR_CASE, $this->_caseFolding);
      // always use exceptions.
      $this->_connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    } catch (PDOException $e) {
      /**
       * @see Zend_Db_Adapter_Exception
       */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception($e->getMessage(), $e->getCode(), $e);
    }
  }
  /**
   * Test if a connection is active
   *
   * @return boolean
   */
  public function isConnected()
  {
    return ((bool) ($this->_connection instanceof PDO));
  }
  /**
   * Force the connection to close.
   *
   * @return void
   */
  public function closeConnection()
  {
    $this->_connection = null;
  }
  /**
   * Prepares an SQL statement.
   *
   * @param string $sql The SQL statement with placeholders.
   * @param array $bind An array of data to bind to the placeholders.
   * @return PDOStatement
   */
  public function prepare($sql)
  {
    $this->_connect();
    $stmtClass = $this->_defaultStmtClass;
    if (!class_exists($stmtClass)) {
      require_once &#39;Zend/Loader.php&#39;;
      Zend_Loader::loadClass($stmtClass);
    }
    $stmt = new $stmtClass($this, $sql);
    $stmt->setFetchMode($this->_fetchMode);
    return $stmt;
  }
  /**
   * Gets the last ID generated automatically by an IDENTITY/AUTOINCREMENT column.
   *
   * As a convention, on RDBMS brands that support sequences
   * (e.g. Oracle, PostgreSQL, DB2), this method forms the name of a sequence
   * from the arguments and returns the last id generated by that sequence.
   * On RDBMS brands that support IDENTITY/AUTOINCREMENT columns, this method
   * returns the last value generated for such a column, and the table name
   * argument is disregarded.
   *
   * On RDBMS brands that don&#39;t support sequences, $tableName and $primaryKey
   * are ignored.
   *
   * @param string $tableName  OPTIONAL Name of table.
   * @param string $primaryKey OPTIONAL Name of primary key column.
   * @return string
   */
  public function lastInsertId($tableName = null, $primaryKey = null)
  {
    $this->_connect();
    return $this->_connection->lastInsertId();
  }
  /**
   * Special handling for PDO query().
   * All bind parameter names must begin with &#39;:&#39;
   *
   * @param string|Zend_Db_Select $sql The SQL statement with placeholders.
   * @param array $bind An array of data to bind to the placeholders.
   * @return Zend_Db_Statement_Pdo
   * @throws Zend_Db_Adapter_Exception To re-throw PDOException.
   */
  public function query($sql, $bind = array())
  {
    if (empty($bind) && $sql instanceof Zend_Db_Select) {
      $bind = $sql->getBind();
    }
    if (is_array($bind)) {
      foreach ($bind as $name => $value) {
        if (!is_int($name) && !preg_match(&#39;/^:/&#39;, $name)) {
          $newName = ":$name";
          unset($bind[$name]);
          $bind[$newName] = $value;
        }
      }
    }
    try {
      return parent::query($sql, $bind);
    } catch (PDOException $e) {
      /**
       * @see Zend_Db_Statement_Exception
       */
      require_once &#39;Zend/Db/Statement/Exception.php&#39;;
      throw new Zend_Db_Statement_Exception($e->getMessage(), $e->getCode(), $e);
    }
  }
  /**
   * Executes an SQL statement and return the number of affected rows
   *
   * @param mixed $sql The SQL statement with placeholders.
   *           May be a string or Zend_Db_Select.
   * @return integer   Number of rows that were modified
   *           or deleted by the SQL statement
   */
  public function exec($sql)
  {
    if ($sql instanceof Zend_Db_Select) {
      $sql = $sql->assemble();
    }
    try {
      $affected = $this->getConnection()->exec($sql);
      if ($affected === false) {
        $errorInfo = $this->getConnection()->errorInfo();
        /**
         * @see Zend_Db_Adapter_Exception
         */
        require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
        throw new Zend_Db_Adapter_Exception($errorInfo[2]);
      }
      return $affected;
    } catch (PDOException $e) {
      /**
       * @see Zend_Db_Adapter_Exception
       */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception($e->getMessage(), $e->getCode(), $e);
    }
  }
  /**
   * Quote a raw string.
   *
   * @param string $value   Raw string
   * @return string      Quoted string
   */
  protected function _quote($value)
  {
    if (is_int($value) || is_float($value)) {
      return $value;
    }
    $this->_connect();
    return $this->_connection->quote($value);
  }
  /**
   * Begin a transaction.
   */
  protected function _beginTransaction()
  {
    $this->_connect();
    $this->_connection->beginTransaction();
  }
  /**
   * Commit a transaction.
   */
  protected function _commit()
  {
    $this->_connect();
    $this->_connection->commit();
  }
  /**
   * Roll-back a transaction.
   */
  protected function _rollBack() {
    $this->_connect();
    $this->_connection->rollBack();
  }
  /**
   * Set the PDO fetch mode.
   *
   * @todo Support FETCH_CLASS and FETCH_INTO.
   *
   * @param int $mode A PDO fetch mode.
   * @return void
   * @throws Zend_Db_Adapter_Exception
   */
  public function setFetchMode($mode)
  {
    //check for PDO extension
    if (!extension_loaded(&#39;pdo&#39;)) {
      /**
       * @see Zend_Db_Adapter_Exception
       */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception(&#39;The PDO extension is required for this adapter but the extension is not loaded&#39;);
    }
    switch ($mode) {
      case PDO::FETCH_LAZY:
      case PDO::FETCH_ASSOC:
      case PDO::FETCH_NUM:
      case PDO::FETCH_BOTH:
      case PDO::FETCH_NAMED:
      case PDO::FETCH_OBJ:
        $this->_fetchMode = $mode;
        break;
      default:
        /**
         * @see Zend_Db_Adapter_Exception
         */
        require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
        throw new Zend_Db_Adapter_Exception("Invalid fetch mode &#39;$mode&#39; specified");
        break;
    }
  }
  /**
   * Check if the adapter supports real SQL parameters.
   *
   * @param string $type &#39;positional&#39; or &#39;named&#39;
   * @return bool
   */
  public function supportsParameters($type)
  {
    switch ($type) {
      case &#39;positional&#39;:
      case &#39;named&#39;:
      default:
        return true;
    }
  }
  /**
   * Retrieve server version in PHP style
   *
   * @return string
   */
  public function getServerVersion()
  {
    $this->_connect();
    try {
      $version = $this->_connection->getAttribute(PDO::ATTR_SERVER_VERSION);
    } catch (PDOException $e) {
      // In case of the driver doesn&#39;t support getting attributes
      return null;
    }
    $matches = null;
    if (preg_match(&#39;/((?:[0-9]{1,2}\.){1,3}[0-9]{1,2})/&#39;, $version, $matches)) {
      return $matches[1];
    } else {
      return null;
    }
  }
}

這個(gè)抽象類(lèi)中又有另一個(gè)核心的抽象類(lèi)。一些核心的方法都在這里

<?php
/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @category  Zend
 * @package  Zend_Db
 * @subpackage Adapter
 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
 * @license  http://framework.zend.com/license/new-bsd   New BSD License
 * @version  $Id: Abstract.php 25229 2013-01-18 08:17:21Z frosch $
 */
/**
 * @see Zend_Db
 */
require_once &#39;Zend/Db.php&#39;;
/**
 * @see Zend_Db_Select
 */
require_once &#39;Zend/Db/Select.php&#39;;
/**
 * Class for connecting to SQL databases and performing common operations.
 *
 * @category  Zend
 * @package  Zend_Db
 * @subpackage Adapter
 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
 * @license  http://framework.zend.com/license/new-bsd   New BSD License
 */
abstract class Zend_Db_Adapter_Abstract
{
  /**
   * User-provided configuration
   *
   * @var array
   */
  protected $_config = array();
  /**
   * Fetch mode
   *
   * @var integer
   */
  protected $_fetchMode = Zend_Db::FETCH_ASSOC;
  /**
   * Query profiler object, of type Zend_Db_Profiler
   * or a subclass of that.
   *
   * @var Zend_Db_Profiler
   */
  protected $_profiler;
  /**
   * Default class name for a DB statement.
   *
   * @var string
   */
  protected $_defaultStmtClass = &#39;Zend_Db_Statement&#39;;
  /**
   * Default class name for the profiler object.
   *
   * @var string
   */
  protected $_defaultProfilerClass = &#39;Zend_Db_Profiler&#39;;
  /**
   * Database connection
   *
   * @var object|resource|null
   */
  protected $_connection = null;
  /**
   * Specifies the case of column names retrieved in queries
   * Options
   * Zend_Db::CASE_NATURAL (default)
   * Zend_Db::CASE_LOWER
   * Zend_Db::CASE_UPPER
   *
   * @var integer
   */
  protected $_caseFolding = Zend_Db::CASE_NATURAL;
  /**
   * Specifies whether the adapter automatically quotes identifiers.
   * If true, most SQL generated by Zend_Db classes applies
   * identifier quoting automatically.
   * If false, developer must quote identifiers themselves
   * by calling quoteIdentifier().
   *
   * @var bool
   */
  protected $_autoQuoteIdentifiers = true;
  /**
   * Keys are UPPERCASE SQL datatypes or the constants
   * Zend_Db::INT_TYPE, Zend_Db::BIGINT_TYPE, or Zend_Db::FLOAT_TYPE.
   *
   * Values are:
   * 0 = 32-bit integer
   * 1 = 64-bit integer
   * 2 = float or decimal
   *
   * @var array Associative array of datatypes to values 0, 1, or 2.
   */
  protected $_numericDataTypes = array(
    Zend_Db::INT_TYPE  => Zend_Db::INT_TYPE,
    Zend_Db::BIGINT_TYPE => Zend_Db::BIGINT_TYPE,
    Zend_Db::FLOAT_TYPE => Zend_Db::FLOAT_TYPE
  );
  /** Weither or not that object can get serialized
   *
   * @var bool
   */
  protected $_allowSerialization = true;
  /**
   * Weither or not the database should be reconnected
   * to that adapter when waking up
   *
   * @var bool
   */
  protected $_autoReconnectOnUnserialize = false;
  /**
   * Constructor.
   *
   * $config is an array of key/value pairs or an instance of Zend_Config
   * containing configuration options. These options are common to most adapters:
   *
   * dbname     => (string) The name of the database to user
   * username    => (string) Connect to the database as this username.
   * password    => (string) Password associated with the username.
   * host      => (string) What host to connect to, defaults to localhost
   *
   * Some options are used on a case-by-case basis by adapters:
   *
   * port      => (string) The port of the database
   * persistent   => (boolean) Whether to use a persistent connection or not, defaults to false
   * protocol    => (string) The network protocol, defaults to TCPIP
   * caseFolding  => (int) style of case-alteration used for identifiers
   * socket     => (string) The socket or named pipe that should be used
   *
   * @param array|Zend_Config $config An array or instance of Zend_Config having configuration data
   * @throws Zend_Db_Adapter_Exception
   */
  public function __construct($config)
  {
    /*
     * Verify that adapter parameters are in an array.
     */
    if (!is_array($config)) {
      /*
       * Convert Zend_Config argument to a plain array.
       */
      if ($config instanceof Zend_Config) {
        $config = $config->toArray();
      } else {
        /**
         * @see Zend_Db_Adapter_Exception
         */
        require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
        throw new Zend_Db_Adapter_Exception(&#39;Adapter parameters must be in an array or a Zend_Config object&#39;);
      }
    }
    $this->_checkRequiredOptions($config);
    $options = array(
      Zend_Db::CASE_FOLDING      => $this->_caseFolding,
      Zend_Db::AUTO_QUOTE_IDENTIFIERS => $this->_autoQuoteIdentifiers,
      Zend_Db::FETCH_MODE       => $this->_fetchMode,
    );
    $driverOptions = array();
    /*
     * normalize the config and merge it with the defaults
     */
    if (array_key_exists(&#39;options&#39;, $config)) {
      // can&#39;t use array_merge() because keys might be integers
      foreach ((array) $config[&#39;options&#39;] as $key => $value) {
        $options[$key] = $value;
      }
    }
    if (array_key_exists(&#39;driver_options&#39;, $config)) {
      if (!empty($config[&#39;driver_options&#39;])) {
        // can&#39;t use array_merge() because keys might be integers
        foreach ((array) $config[&#39;driver_options&#39;] as $key => $value) {
          $driverOptions[$key] = $value;
        }
      }
    }
    if (!isset($config[&#39;charset&#39;])) {
      $config[&#39;charset&#39;] = null;
    }
    if (!isset($config[&#39;persistent&#39;])) {
      $config[&#39;persistent&#39;] = false;
    }
    $this->_config = array_merge($this->_config, $config);
    $this->_config[&#39;options&#39;] = $options;
    $this->_config[&#39;driver_options&#39;] = $driverOptions;
    // obtain the case setting, if there is one
    if (array_key_exists(Zend_Db::CASE_FOLDING, $options)) {
      $case = (int) $options[Zend_Db::CASE_FOLDING];
      switch ($case) {
        case Zend_Db::CASE_LOWER:
        case Zend_Db::CASE_UPPER:
        case Zend_Db::CASE_NATURAL:
          $this->_caseFolding = $case;
          break;
        default:
          /** @see Zend_Db_Adapter_Exception */
          require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
          throw new Zend_Db_Adapter_Exception(&#39;Case must be one of the following constants: &#39;
            . &#39;Zend_Db::CASE_NATURAL, Zend_Db::CASE_LOWER, Zend_Db::CASE_UPPER&#39;);
      }
    }
    if (array_key_exists(Zend_Db::FETCH_MODE, $options)) {
      if (is_string($options[Zend_Db::FETCH_MODE])) {
        $constant = &#39;Zend_Db::FETCH_&#39; . strtoupper($options[Zend_Db::FETCH_MODE]);
        if(defined($constant)) {
          $options[Zend_Db::FETCH_MODE] = constant($constant);
        }
      }
      $this->setFetchMode((int) $options[Zend_Db::FETCH_MODE]);
    }
    // obtain quoting property if there is one
    if (array_key_exists(Zend_Db::AUTO_QUOTE_IDENTIFIERS, $options)) {
      $this->_autoQuoteIdentifiers = (bool) $options[Zend_Db::AUTO_QUOTE_IDENTIFIERS];
    }
    // obtain allow serialization property if there is one
    if (array_key_exists(Zend_Db::ALLOW_SERIALIZATION, $options)) {
      $this->_allowSerialization = (bool) $options[Zend_Db::ALLOW_SERIALIZATION];
    }
    // obtain auto reconnect on unserialize property if there is one
    if (array_key_exists(Zend_Db::AUTO_RECONNECT_ON_UNSERIALIZE, $options)) {
      $this->_autoReconnectOnUnserialize = (bool) $options[Zend_Db::AUTO_RECONNECT_ON_UNSERIALIZE];
    }
    // create a profiler object
    $profiler = false;
    if (array_key_exists(Zend_Db::PROFILER, $this->_config)) {
      $profiler = $this->_config[Zend_Db::PROFILER];
      unset($this->_config[Zend_Db::PROFILER]);
    }
    $this->setProfiler($profiler);
  }
  /**
   * Check for config options that are mandatory.
   * Throw exceptions if any are missing.
   *
   * @param array $config
   * @throws Zend_Db_Adapter_Exception
   */
  protected function _checkRequiredOptions(array $config)
  {
    // we need at least a dbname
    if (! array_key_exists(&#39;dbname&#39;, $config)) {
      /** @see Zend_Db_Adapter_Exception */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception("Configuration array must have a key for &#39;dbname&#39; that names the database instance");
    }
    if (! array_key_exists(&#39;password&#39;, $config)) {
      /**
       * @see Zend_Db_Adapter_Exception
       */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception("Configuration array must have a key for &#39;password&#39; for login credentials");
    }
    if (! array_key_exists(&#39;username&#39;, $config)) {
      /**
       * @see Zend_Db_Adapter_Exception
       */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception("Configuration array must have a key for &#39;username&#39; for login credentials");
    }
  }
  /**
   * Returns the underlying database connection object or resource.
   * If not presently connected, this initiates the connection.
   *
   * @return object|resource|null
   */
  public function getConnection()
  {
    $this->_connect();
    return $this->_connection;
  }
  /**
   * Returns the configuration variables in this adapter.
   *
   * @return array
   */
  public function getConfig()
  {
    return $this->_config;
  }
  /**
   * Set the adapter&#39;s profiler object.
   *
   * The argument may be a boolean, an associative array, an instance of
   * Zend_Db_Profiler, or an instance of Zend_Config.
   *
   * A boolean argument sets the profiler to enabled if true, or disabled if
   * false. The profiler class is the adapter&#39;s default profiler class,
   * Zend_Db_Profiler.
   *
   * An instance of Zend_Db_Profiler sets the adapter&#39;s instance to that
   * object. The profiler is enabled and disabled separately.
   *
   * An associative array argument may contain any of the keys &#39;enabled&#39;,
   * &#39;class&#39;, and &#39;instance&#39;. The &#39;enabled&#39; and &#39;instance&#39; keys correspond to the
   * boolean and object types documented above. The &#39;class&#39; key is used to name a
   * class to use for a custom profiler. The class must be Zend_Db_Profiler or a
   * subclass. The class is instantiated with no constructor arguments. The &#39;class&#39;
   * option is ignored when the &#39;instance&#39; option is supplied.
   *
   * An object of type Zend_Config may contain the properties &#39;enabled&#39;, &#39;class&#39;, and
   * &#39;instance&#39;, just as if an associative array had been passed instead.
   *
   * @param Zend_Db_Profiler|Zend_Config|array|boolean $profiler
   * @return Zend_Db_Adapter_Abstract Provides a fluent interface
   * @throws Zend_Db_Profiler_Exception if the object instance or class specified
   *     is not Zend_Db_Profiler or an extension of that class.
   */
  public function setProfiler($profiler)
  {
    $enabled     = null;
    $profilerClass  = $this->_defaultProfilerClass;
    $profilerInstance = null;
    if ($profilerIsObject = is_object($profiler)) {
      if ($profiler instanceof Zend_Db_Profiler) {
        $profilerInstance = $profiler;
      } else if ($profiler instanceof Zend_Config) {
        $profiler = $profiler->toArray();
      } else {
        /**
         * @see Zend_Db_Profiler_Exception
         */
        require_once &#39;Zend/Db/Profiler/Exception.php&#39;;
        throw new Zend_Db_Profiler_Exception(&#39;Profiler argument must be an instance of either Zend_Db_Profiler&#39;
          . &#39; or Zend_Config when provided as an object&#39;);
      }
    }
    if (is_array($profiler)) {
      if (isset($profiler[&#39;enabled&#39;])) {
        $enabled = (bool) $profiler[&#39;enabled&#39;];
      }
      if (isset($profiler[&#39;class&#39;])) {
        $profilerClass = $profiler[&#39;class&#39;];
      }
      if (isset($profiler[&#39;instance&#39;])) {
        $profilerInstance = $profiler[&#39;instance&#39;];
      }
    } else if (!$profilerIsObject) {
      $enabled = (bool) $profiler;
    }
    if ($profilerInstance === null) {
      if (!class_exists($profilerClass)) {
        require_once &#39;Zend/Loader.php&#39;;
        Zend_Loader::loadClass($profilerClass);
      }
      $profilerInstance = new $profilerClass();
    }
    if (!$profilerInstance instanceof Zend_Db_Profiler) {
      /** @see Zend_Db_Profiler_Exception */
      require_once &#39;Zend/Db/Profiler/Exception.php&#39;;
      throw new Zend_Db_Profiler_Exception(&#39;Class &#39; . get_class($profilerInstance) . &#39; does not extend &#39;
        . &#39;Zend_Db_Profiler&#39;);
    }
    if (null !== $enabled) {
      $profilerInstance->setEnabled($enabled);
    }
    $this->_profiler = $profilerInstance;
    return $this;
  }
  /**
   * Returns the profiler for this adapter.
   *
   * @return Zend_Db_Profiler
   */
  public function getProfiler()
  {
    return $this->_profiler;
  }
  /**
   * Get the default statement class.
   *
   * @return string
   */
  public function getStatementClass()
  {
    return $this->_defaultStmtClass;
  }
  /**
   * Set the default statement class.
   *
   * @return Zend_Db_Adapter_Abstract Fluent interface
   */
  public function setStatementClass($class)
  {
    $this->_defaultStmtClass = $class;
    return $this;
  }
  /**
   * Prepares and executes an SQL statement with bound data.
   *
   * @param mixed $sql The SQL statement with placeholders.
   *           May be a string or Zend_Db_Select.
   * @param mixed $bind An array of data to bind to the placeholders.
   * @return Zend_Db_Statement_Interface
   */
  public function query($sql, $bind = array())
  {
    // connect to the database if needed
    $this->_connect();
    // is the $sql a Zend_Db_Select object?
    if ($sql instanceof Zend_Db_Select) {
      if (empty($bind)) {
        $bind = $sql->getBind();
      }
      $sql = $sql->assemble();
    }
    // make sure $bind to an array;
    // don&#39;t use (array) typecasting because
    // because $bind may be a Zend_Db_Expr object
    if (!is_array($bind)) {
      $bind = array($bind);
    }
    // prepare and execute the statement with profiling
    $stmt = $this->prepare($sql);
    $stmt->execute($bind);
    // return the results embedded in the prepared statement object
    $stmt->setFetchMode($this->_fetchMode);
    return $stmt;
  }
  /**
   * Leave autocommit mode and begin a transaction.
   *
   * @return Zend_Db_Adapter_Abstract
   */
  public function beginTransaction()
  {
    $this->_connect();
    $q = $this->_profiler->queryStart(&#39;begin&#39;, Zend_Db_Profiler::TRANSACTION);
    $this->_beginTransaction();
    $this->_profiler->queryEnd($q);
    return $this;
  }
  /**
   * Commit a transaction and return to autocommit mode.
   *
   * @return Zend_Db_Adapter_Abstract
   */
  public function commit()
  {
    $this->_connect();
    $q = $this->_profiler->queryStart(&#39;commit&#39;, Zend_Db_Profiler::TRANSACTION);
    $this->_commit();
    $this->_profiler->queryEnd($q);
    return $this;
  }
  /**
   * Roll back a transaction and return to autocommit mode.
   *
   * @return Zend_Db_Adapter_Abstract
   */
  public function rollBack()
  {
    $this->_connect();
    $q = $this->_profiler->queryStart(&#39;rollback&#39;, Zend_Db_Profiler::TRANSACTION);
    $this->_rollBack();
    $this->_profiler->queryEnd($q);
    return $this;
  }
  /**
   * Inserts a table row with specified data.
   *
   * @param mixed $table The table to insert data into.
   * @param array $bind Column-value pairs.
   * @return int The number of affected rows.
   * @throws Zend_Db_Adapter_Exception
   */
  public function insert($table, array $bind)
  {
    // extract and quote col names from the array keys
    $cols = array();
    $vals = array();
    $i = 0;
    foreach ($bind as $col => $val) {
      $cols[] = $this->quoteIdentifier($col, true);
      if ($val instanceof Zend_Db_Expr) {
        $vals[] = $val->__toString();
        unset($bind[$col]);
      } else {
        if ($this->supportsParameters(&#39;positional&#39;)) {
          $vals[] = &#39;?&#39;;
        } else {
          if ($this->supportsParameters(&#39;named&#39;)) {
            unset($bind[$col]);
            $bind[&#39;:col&#39;.$i] = $val;
            $vals[] = &#39;:col&#39;.$i;
            $i++;
          } else {
            /** @see Zend_Db_Adapter_Exception */
            require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
            throw new Zend_Db_Adapter_Exception(get_class($this) ." doesn&#39;t support positional or named binding");
          }
        }
      }
    }
    // build the statement
    $sql = "INSERT INTO "
       . $this->quoteIdentifier($table, true)
       . &#39; (&#39; . implode(&#39;, &#39;, $cols) . &#39;) &#39;
       . &#39;VALUES (&#39; . implode(&#39;, &#39;, $vals) . &#39;)&#39;;
    // execute the statement and return the number of affected rows
    if ($this->supportsParameters(&#39;positional&#39;)) {
      $bind = array_values($bind);
    }
    $stmt = $this->query($sql, $bind);
    $result = $stmt->rowCount();
    return $result;
  }
  /**
   * Updates table rows with specified data based on a WHERE clause.
   *
   * @param mixed    $table The table to update.
   * @param array    $bind Column-value pairs.
   * @param mixed    $where UPDATE WHERE clause(s).
   * @return int     The number of affected rows.
   * @throws Zend_Db_Adapter_Exception
   */
  public function update($table, array $bind, $where = &#39;&#39;)
  {
    /**
     * Build "col = ?" pairs for the statement,
     * except for Zend_Db_Expr which is treated literally.
     */
    $set = array();
    $i = 0;
    foreach ($bind as $col => $val) {
      if ($val instanceof Zend_Db_Expr) {
        $val = $val->__toString();
        unset($bind[$col]);
      } else {
        if ($this->supportsParameters(&#39;positional&#39;)) {
          $val = &#39;?&#39;;
        } else {
          if ($this->supportsParameters(&#39;named&#39;)) {
            unset($bind[$col]);
            $bind[&#39;:col&#39;.$i] = $val;
            $val = &#39;:col&#39;.$i;
            $i++;
          } else {
            /** @see Zend_Db_Adapter_Exception */
            require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
            throw new Zend_Db_Adapter_Exception(get_class($this) ." doesn&#39;t support positional or named binding");
          }
        }
      }
      $set[] = $this->quoteIdentifier($col, true) . &#39; = &#39; . $val;
    }
    $where = $this->_whereExpr($where);
    /**
     * Build the UPDATE statement
     */
    $sql = "UPDATE "
       . $this->quoteIdentifier($table, true)
       . &#39; SET &#39; . implode(&#39;, &#39;, $set)
       . (($where) ? " WHERE $where" : &#39;&#39;);
    /**
     * Execute the statement and return the number of affected rows
     */
    if ($this->supportsParameters(&#39;positional&#39;)) {
      $stmt = $this->query($sql, array_values($bind));
    } else {
      $stmt = $this->query($sql, $bind);
    }
    $result = $stmt->rowCount();
    return $result;
  }
  /**
   * Deletes table rows based on a WHERE clause.
   *
   * @param mixed    $table The table to update.
   * @param mixed    $where DELETE WHERE clause(s).
   * @return int     The number of affected rows.
   */
  public function delete($table, $where = &#39;&#39;)
  {
    $where = $this->_whereExpr($where);
    /**
     * Build the DELETE statement
     */
    $sql = "DELETE FROM "
       . $this->quoteIdentifier($table, true)
       . (($where) ? " WHERE $where" : &#39;&#39;);
    /**
     * Execute the statement and return the number of affected rows
     */
    $stmt = $this->query($sql);
    $result = $stmt->rowCount();
    return $result;
  }
  /**
   * Convert an array, string, or Zend_Db_Expr object
   * into a string to put in a WHERE clause.
   *
   * @param mixed $where
   * @return string
   */
  protected function _whereExpr($where)
  {
    if (empty($where)) {
      return $where;
    }
    if (!is_array($where)) {
      $where = array($where);
    }
    foreach ($where as $cond => &$term) {
      // is $cond an int? (i.e. Not a condition)
      if (is_int($cond)) {
        // $term is the full condition
        if ($term instanceof Zend_Db_Expr) {
          $term = $term->__toString();
        }
      } else {
        // $cond is the condition with placeholder,
        // and $term is quoted into the condition
        $term = $this->quoteInto($cond, $term);
      }
      $term = &#39;(&#39; . $term . &#39;)&#39;;
    }
    $where = implode(&#39; AND &#39;, $where);
    return $where;
  }
  /**
   * Creates and returns a new Zend_Db_Select object for this adapter.
   *
   * @return Zend_Db_Select
   */
  public function select()
  {
    return new Zend_Db_Select($this);
  }
  /**
   * Get the fetch mode.
   *
   * @return int
   */
  public function getFetchMode()
  {
    return $this->_fetchMode;
  }
  /**
   * Fetches all SQL result rows as a sequential array.
   * Uses the current fetchMode for the adapter.
   *
   * @param string|Zend_Db_Select $sql An SQL SELECT statement.
   * @param mixed         $bind Data to bind into SELECT placeholders.
   * @param mixed         $fetchMode Override current fetch mode.
   * @return array
   */
  public function fetchAll($sql, $bind = array(), $fetchMode = null)
  {
    if ($fetchMode === null) {
      $fetchMode = $this->_fetchMode;
    }
    $stmt = $this->query($sql, $bind);
    $result = $stmt->fetchAll($fetchMode);
    return $result;
  }
  /**
   * Fetches the first row of the SQL result.
   * Uses the current fetchMode for the adapter.
   *
   * @param string|Zend_Db_Select $sql An SQL SELECT statement.
   * @param mixed $bind Data to bind into SELECT placeholders.
   * @param mixed         $fetchMode Override current fetch mode.
   * @return mixed Array, object, or scalar depending on fetch mode.
   */
  public function fetchRow($sql, $bind = array(), $fetchMode = null)
  {
    if ($fetchMode === null) {
      $fetchMode = $this->_fetchMode;
    }
    $stmt = $this->query($sql, $bind);
    $result = $stmt->fetch($fetchMode);
    return $result;
  }
  /**
   * Fetches all SQL result rows as an associative array.
   *
   * The first column is the key, the entire row array is the
   * value. You should construct the query to be sure that
   * the first column contains unique values, or else
   * rows with duplicate values in the first column will
   * overwrite previous data.
   *
   * @param string|Zend_Db_Select $sql An SQL SELECT statement.
   * @param mixed $bind Data to bind into SELECT placeholders.
   * @return array
   */
  public function fetchAssoc($sql, $bind = array())
  {
    $stmt = $this->query($sql, $bind);
    $data = array();
    while ($row = $stmt->fetch(Zend_Db::FETCH_ASSOC)) {
      $tmp = array_values(array_slice($row, 0, 1));
      $data[$tmp[0]] = $row;
    }
    return $data;
  }
  /**
   * Fetches the first column of all SQL result rows as an array.
   *
   * @param string|Zend_Db_Select $sql An SQL SELECT statement.
   * @param mixed $bind Data to bind into SELECT placeholders.
   * @return array
   */
  public function fetchCol($sql, $bind = array())
  {
    $stmt = $this->query($sql, $bind);
    $result = $stmt->fetchAll(Zend_Db::FETCH_COLUMN, 0);
    return $result;
  }
  /**
   * Fetches all SQL result rows as an array of key-value pairs.
   *
   * The first column is the key, the second column is the
   * value.
   *
   * @param string|Zend_Db_Select $sql An SQL SELECT statement.
   * @param mixed $bind Data to bind into SELECT placeholders.
   * @return array
   */
  public function fetchPairs($sql, $bind = array())
  {
    $stmt = $this->query($sql, $bind);
    $data = array();
    while ($row = $stmt->fetch(Zend_Db::FETCH_NUM)) {
      $data[$row[0]] = $row[1];
    }
    return $data;
  }
  /**
   * Fetches the first column of the first row of the SQL result.
   *
   * @param string|Zend_Db_Select $sql An SQL SELECT statement.
   * @param mixed $bind Data to bind into SELECT placeholders.
   * @return string
   */
  public function fetchOne($sql, $bind = array())
  {
    $stmt = $this->query($sql, $bind);
    $result = $stmt->fetchColumn(0);
    return $result;
  }
  /**
   * Quote a raw string.
   *
   * @param string $value   Raw string
   * @return string      Quoted string
   */
  protected function _quote($value)
  {
    if (is_int($value)) {
      return $value;
    } elseif (is_float($value)) {
      return sprintf(&#39;%F&#39;, $value);
    }
    return "&#39;" . addcslashes($value, "\000\n\r\\&#39;\"\032") . "&#39;";
  }
  /**
   * Safely quotes a value for an SQL statement.
   *
   * If an array is passed as the value, the array values are quoted
   * and then returned as a comma-separated string.
   *
   * @param mixed $value The value to quote.
   * @param mixed $type OPTIONAL the SQL datatype name, or constant, or null.
   * @return mixed An SQL-safe quoted value (or string of separated values).
   */
  public function quote($value, $type = null)
  {
    $this->_connect();
    if ($value instanceof Zend_Db_Select) {
      return &#39;(&#39; . $value->assemble() . &#39;)&#39;;
    }
    if ($value instanceof Zend_Db_Expr) {
      return $value->__toString();
    }
    if (is_array($value)) {
      foreach ($value as &$val) {
        $val = $this->quote($val, $type);
      }
      return implode(&#39;, &#39;, $value);
    }
    if ($type !== null && array_key_exists($type = strtoupper($type), $this->_numericDataTypes)) {
      $quotedValue = &#39;0&#39;;
      switch ($this->_numericDataTypes[$type]) {
        case Zend_Db::INT_TYPE: // 32-bit integer
          $quotedValue = (string) intval($value);
          break;
        case Zend_Db::BIGINT_TYPE: // 64-bit integer
          // ANSI SQL-style hex literals (e.g. x&#39;[\dA-F]+&#39;)
          // are not supported here, because these are string
          // literals, not numeric literals.
          if (preg_match(&#39;/^(
             [+-]?         # optional sign
             (?:
              0[Xx][\da-fA-F]+   # ODBC-style hexadecimal
              |\d+         # decimal or octal, or MySQL ZEROFILL decimal
              (?:[eE][+-]?\d+)?  # optional exponent on decimals or octals
             )
            )/x&#39;,
            (string) $value, $matches)) {
            $quotedValue = $matches[1];
          }
          break;
        case Zend_Db::FLOAT_TYPE: // float or decimal
          $quotedValue = sprintf(&#39;%F&#39;, $value);
      }
      return $quotedValue;
    }
    return $this->_quote($value);
  }
  /**
   * Quotes a value and places into a piece of text at a placeholder.
   *
   * The placeholder is a question-mark; all placeholders will be replaced
   * with the quoted value.  For example:
   *
   * <code>
   * $text = "WHERE date < ?";
   * $date = "2005-01-02";
   * $safe = $sql->quoteInto($text, $date);
   * // $safe = "WHERE date < &#39;2005-01-02&#39;"
   * </code>
   *
   * @param string $text The text with a placeholder.
   * @param mixed  $value The value to quote.
   * @param string $type OPTIONAL SQL datatype
   * @param integer $count OPTIONAL count of placeholders to replace
   * @return string An SQL-safe quoted value placed into the original text.
   */
  public function quoteInto($text, $value, $type = null, $count = null)
  {
    if ($count === null) {
      return str_replace(&#39;?&#39;, $this->quote($value, $type), $text);
    } else {
      while ($count > 0) {
        if (strpos($text, &#39;?&#39;) !== false) {
          $text = substr_replace($text, $this->quote($value, $type), strpos($text, &#39;?&#39;), 1);
        }
        --$count;
      }
      return $text;
    }
  }
  /**
   * Quotes an identifier.
   *
   * Accepts a string representing a qualified indentifier. For Example:
   * <code>
   * $adapter->quoteIdentifier(&#39;myschema.mytable&#39;)
   * </code>
   * Returns: "myschema"."mytable"
   *
   * Or, an array of one or more identifiers that may form a qualified identifier:
   * <code>
   * $adapter->quoteIdentifier(array(&#39;myschema&#39;,&#39;my.table&#39;))
   * </code>
   * Returns: "myschema"."my.table"
   *
   * The actual quote character surrounding the identifiers may vary depending on
   * the adapter.
   *
   * @param string|array|Zend_Db_Expr $ident The identifier.
   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
   * @return string The quoted identifier.
   */
  public function quoteIdentifier($ident, $auto=false)
  {
    return $this->_quoteIdentifierAs($ident, null, $auto);
  }
  /**
   * Quote a column identifier and alias.
   *
   * @param string|array|Zend_Db_Expr $ident The identifier or expression.
   * @param string $alias An alias for the column.
   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
   * @return string The quoted identifier and alias.
   */
  public function quoteColumnAs($ident, $alias, $auto=false)
  {
    return $this->_quoteIdentifierAs($ident, $alias, $auto);
  }
  /**
   * Quote a table identifier and alias.
   *
   * @param string|array|Zend_Db_Expr $ident The identifier or expression.
   * @param string $alias An alias for the table.
   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
   * @return string The quoted identifier and alias.
   */
  public function quoteTableAs($ident, $alias = null, $auto = false)
  {
    return $this->_quoteIdentifierAs($ident, $alias, $auto);
  }
  /**
   * Quote an identifier and an optional alias.
   *
   * @param string|array|Zend_Db_Expr $ident The identifier or expression.
   * @param string $alias An optional alias.
   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
   * @param string $as The string to add between the identifier/expression and the alias.
   * @return string The quoted identifier and alias.
   */
  protected function _quoteIdentifierAs($ident, $alias = null, $auto = false, $as = &#39; AS &#39;)
  {
    if ($ident instanceof Zend_Db_Expr) {
      $quoted = $ident->__toString();
    } elseif ($ident instanceof Zend_Db_Select) {
      $quoted = &#39;(&#39; . $ident->assemble() . &#39;)&#39;;
    } else {
      if (is_string($ident)) {
        $ident = explode(&#39;.&#39;, $ident);
      }
      if (is_array($ident)) {
        $segments = array();
        foreach ($ident as $segment) {
          if ($segment instanceof Zend_Db_Expr) {
            $segments[] = $segment->__toString();
          } else {
            $segments[] = $this->_quoteIdentifier($segment, $auto);
          }
        }
        if ($alias !== null && end($ident) == $alias) {
          $alias = null;
        }
        $quoted = implode(&#39;.&#39;, $segments);
      } else {
        $quoted = $this->_quoteIdentifier($ident, $auto);
      }
    }
    if ($alias !== null) {
      $quoted .= $as . $this->_quoteIdentifier($alias, $auto);
    }
    return $quoted;
  }
  /**
   * Quote an identifier.
   *
   * @param string $value The identifier or expression.
   * @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
   * @return string    The quoted identifier and alias.
   */
  protected function _quoteIdentifier($value, $auto=false)
  {
    if ($auto === false || $this->_autoQuoteIdentifiers === true) {
      $q = $this->getQuoteIdentifierSymbol();
      return ($q . str_replace("$q", "$q$q", $value) . $q);
    }
    return $value;
  }
  /**
   * Returns the symbol the adapter uses for delimited identifiers.
   *
   * @return string
   */
  public function getQuoteIdentifierSymbol()
  {
    return &#39;"&#39;;
  }
  /**
   * Return the most recent value from the specified sequence in the database.
   * This is supported only on RDBMS brands that support sequences
   * (e.g. Oracle, PostgreSQL, DB2). Other RDBMS brands return null.
   *
   * @param string $sequenceName
   * @return string
   */
  public function lastSequenceId($sequenceName)
  {
    return null;
  }
  /**
   * Generate a new value from the specified sequence in the database, and return it.
   * This is supported only on RDBMS brands that support sequences
   * (e.g. Oracle, PostgreSQL, DB2). Other RDBMS brands return null.
   *
   * @param string $sequenceName
   * @return string
   */
  public function nextSequenceId($sequenceName)
  {
    return null;
  }
  /**
   * Helper method to change the case of the strings used
   * when returning result sets in FETCH_ASSOC and FETCH_BOTH
   * modes.
   *
   * This is not intended to be used by application code,
   * but the method must be public so the Statement class
   * can invoke it.
   *
   * @param string $key
   * @return string
   */
  public function foldCase($key)
  {
    switch ($this->_caseFolding) {
      case Zend_Db::CASE_LOWER:
        $value = strtolower((string) $key);
        break;
      case Zend_Db::CASE_UPPER:
        $value = strtoupper((string) $key);
        break;
      case Zend_Db::CASE_NATURAL:
      default:
        $value = (string) $key;
    }
    return $value;
  }
  /**
   * called when object is getting serialized
   * This disconnects the DB object that cant be serialized
   *
   * @throws Zend_Db_Adapter_Exception
   * @return array
   */
  public function __sleep()
  {
    if ($this->_allowSerialization == false) {
      /** @see Zend_Db_Adapter_Exception */
      require_once &#39;Zend/Db/Adapter/Exception.php&#39;;
      throw new Zend_Db_Adapter_Exception(get_class($this) ." is not allowed to be serialized");
    }
    $this->_connection = false;
    return array_keys(array_diff_key(get_object_vars($this), array(&#39;_connection&#39;=>false)));
  }
  /**
   * called when object is getting unserialized
   *
   * @return void
   */
  public function __wakeup()
  {
    if ($this->_autoReconnectOnUnserialize == true) {
      $this->getConnection();
    }
  }
  /**
   * Abstract Methods
   */
  /**
   * Returns a list of the tables in the database.
   *
   * @return array
   */
  abstract public function listTables();
  /**
   * Returns the column descriptions for a table.
   *
   * The return value is an associative array keyed by the column name,
   * as returned by the RDBMS.
   *
   * The value of each array element is an associative array
   * with the following keys:
   *
   * SCHEMA_NAME => string; name of database or schema
   * TABLE_NAME => string;
   * COLUMN_NAME => string; column name
   * COLUMN_POSITION => number; ordinal position of column in table
   * DATA_TYPE  => string; SQL datatype name of column
   * DEFAULT   => string; default expression of column, null if none
   * NULLABLE  => boolean; true if column can have nulls
   * LENGTH   => number; length of CHAR/VARCHAR
   * SCALE    => number; scale of NUMERIC/DECIMAL
   * PRECISION  => number; precision of NUMERIC/DECIMAL
   * UNSIGNED  => boolean; unsigned property of an integer type
   * PRIMARY   => boolean; true if column is part of the primary key
   * PRIMARY_POSITION => integer; position of column in primary key
   *
   * @param string $tableName
   * @param string $schemaName OPTIONAL
   * @return array
   */
  abstract public function describeTable($tableName, $schemaName = null);
  /**
   * Creates a connection to the database.
   *
   * @return void
   */
  abstract protected function _connect();
  /**
   * Test if a connection is active
   *
   * @return boolean
   */
  abstract public function isConnected();
  /**
   * Force the connection to close.
   *
   * @return void
   */
  abstract public function closeConnection();
  /**
   * Prepare a statement and return a PDOStatement-like object.
   *
   * @param string|Zend_Db_Select $sql SQL query
   * @return Zend_Db_Statement|PDOStatement
   */
  abstract public function prepare($sql);
  /**
   * Gets the last ID generated automatically by an IDENTITY/AUTOINCREMENT column.
   *
   * As a convention, on RDBMS brands that support sequences
   * (e.g. Oracle, PostgreSQL, DB2), this method forms the name of a sequence
   * from the arguments and returns the last id generated by that sequence.
   * On RDBMS brands that support IDENTITY/AUTOINCREMENT columns, this method
   * returns the last value generated for such a column, and the table name
   * argument is disregarded.
   *
   * @param string $tableName  OPTIONAL Name of table.
   * @param string $primaryKey OPTIONAL Name of primary key column.
   * @return string
   */
  abstract public function lastInsertId($tableName = null, $primaryKey = null);
  /**
   * Begin a transaction.
   */
  abstract protected function _beginTransaction();
  /**
   * Commit a transaction.
   */
  abstract protected function _commit();
  /**
   * Roll-back a transaction.
   */
  abstract protected function _rollBack();
  /**
   * Set the fetch mode.
   *
   * @param integer $mode
   * @return void
   * @throws Zend_Db_Adapter_Exception
   */
  abstract public function setFetchMode($mode);
  /**
   * Adds an adapter-specific LIMIT clause to the SELECT statement.
   *
   * @param mixed $sql
   * @param integer $count
   * @param integer $offset
   * @return string
   */
  abstract public function limit($sql, $count, $offset = 0);
  /**
   * Check if the adapter supports real SQL parameters.
   *
   * @param string $type &#39;positional&#39; or &#39;named&#39;
   * @return bool
   */
  abstract public function supportsParameters($type);
  /**
   * Retrieve server version in PHP style
   *
   * @return string
   */
  abstract public function getServerVersion();
}

到此,我已經(jīng)暈了。你呢???

哈哈哈。。。

下面看一些簡(jiǎn)單的案例

插入數(shù)據(jù)到數(shù)據(jù)庫(kù):

<?php
require_once &#39;Zend/Db.php&#39;;
$params = array(&#39;host&#39;=>&#39;127.0.0.1&#39;,
  &#39;username&#39;=>&#39;root&#39;,
  &#39;password&#39;=>&#39;&#39;,
  &#39;dbname&#39;=>&#39;test&#39;
  );
$db = Zend_Db::factory(&#39;PDO_Mysql&#39;,$params);
$row = array(
  'username'=>'Jiqing',
  'password'=>'jiqing90061234'
  );
$table = 'user';
$res = $db->insert($table,$row);
if($res){
  echo "成功插入新的記錄!";
  echo "

"; $last_insert_id = $db->lastInsertId($table); echo "新記錄的ID值為:"; echo $last_insert_id; echo "

"; echo "其內(nèi)容為:"; $sql = "select * from $table where id=$last_insert_id"; $result = $db->fetchRow($sql); echo "

"; foreach($result as $key=>$val){ echo $key; echo "值為:"; echo $val; echo "

"; } }else{ echo "插入數(shù)據(jù)有誤"; }

結(jié)果為:

成功插入新的記錄!
新記錄的ID值為:13
其內(nèi)容為:
id值為:13
username值為:Jiqing
password值為:jiqing90061234

修改update方法

刪除delete方法

都大同小異,首先連接數(shù)據(jù)庫(kù),然后填寫(xiě)相應(yīng)參數(shù),執(zhí)行即可。

查詢方法總結(jié):

fetchAll()匹配查詢結(jié)果,返回一個(gè)連續(xù)的數(shù)組。
fetchAssoc()匹配查詢結(jié)果,返回一個(gè)聯(lián)合的數(shù)組。
fetchCol()匹配結(jié)果的第一列,返回一個(gè)數(shù)組。
fetchOne()陪陪查詢結(jié)果的第一列與第一行的值,返回一個(gè)字符串。
fetchRow()匹配查詢結(jié)果的第一行,返回一個(gè)數(shù)組。

常用的是第一個(gè)和最后一個(gè)方法,其他的方法用的不是很多。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,更多相關(guān)內(nèi)容請(qǐng)關(guān)注PHP中文網(wǎng)!

相關(guān)推薦:

Zend_Form組件實(shí)現(xiàn)表單提交并顯示錯(cuò)誤提示的方法

以上是Zend Framework中的Zend_Db數(shù)據(jù)庫(kù)操作的詳細(xì)內(nèi)容。更多信息請(qǐng)關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

本站聲明
本文內(nèi)容由網(wǎng)友自發(fā)貢獻(xiàn),版權(quán)歸原作者所有,本站不承擔(dān)相應(yīng)法律責(zé)任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請(qǐng)聯(lián)系admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費(fèi)脫衣服圖片

Undresser.AI Undress

Undresser.AI Undress

人工智能驅(qū)動(dòng)的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用于從照片中去除衣服的在線人工智能工具。

Clothoff.io

Clothoff.io

AI脫衣機(jī)

Video Face Swap

Video Face Swap

使用我們完全免費(fèi)的人工智能換臉工具輕松在任何視頻中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費(fèi)的代碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

功能強(qiáng)大的PHP集成開(kāi)發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺(jué)化網(wǎng)頁(yè)開(kāi)發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級(jí)代碼編輯軟件(SublimeText3)

熱門(mén)話題

Microsoft NET Framework 安裝問(wèn)題 錯(cuò)誤代碼 0x800c0006 修復(fù) Microsoft NET Framework 安裝問(wèn)題 錯(cuò)誤代碼 0x800c0006 修復(fù) May 05, 2023 pm 04:01 PM

.NETFramework4是開(kāi)發(fā)人員和最終用戶在Windows上運(yùn)行最新版本的應(yīng)用程序所必需的。但是,在下載安裝.NETFramework4時(shí),許多用戶抱怨安裝程序在中途停止,顯示以下錯(cuò)誤消息-“?.NETFramework4hasnotbeeninstalledbecauseDownloadfailedwitherrorcode0x800c0006?”。在您的設(shè)備上安裝.NETFramework4時(shí),如果您也在體驗(yàn)它,那么您就來(lái)對(duì)了地方

SCNotification 已停止工作 [修復(fù)它的 5 個(gè)步驟] SCNotification 已停止工作 [修復(fù)它的 5 個(gè)步驟] May 17, 2023 pm 09:35 PM

作為Windows用戶,您很可能會(huì)在每次啟動(dòng)計(jì)算機(jī)時(shí)遇到SCNotification已停止工作錯(cuò)誤。SCNotification.exe是一個(gè)微軟系統(tǒng)通知文件,由于權(quán)限錯(cuò)誤和點(diǎn)網(wǎng)故障等原因,每次啟動(dòng)PC時(shí)都會(huì)崩潰。此錯(cuò)誤也以其問(wèn)題事件名稱(chēng)而聞名。因此,您可能不會(huì)將其視為SCNotification已停止工作,而是將其視為錯(cuò)誤clr20r3。在本文中,我們將探討您需要采取的所有步驟來(lái)修復(fù)SCNotification已停止工作,以免它再次困擾您。什么是SCNotification.e

php如何使用CodeIgniter4框架? php如何使用CodeIgniter4框架? May 31, 2023 pm 02:51 PM

PHP是一種非常流行的編程語(yǔ)言,而CodeIgniter4是一種常用的PHP框架。在開(kāi)發(fā)Web應(yīng)用程序時(shí),使用框架是非常有幫助的,它可以加速開(kāi)發(fā)過(guò)程、提高代碼質(zhì)量、降低維護(hù)成本。本文將介紹如何使用CodeIgniter4框架。安裝CodeIgniter4框架CodeIgniter4框架可以從官方網(wǎng)站(https://codeigniter.com/)下載。下

Microsoft .NET Framework 4.5.2、4.6 和 4.6.1 將于 2022 年 4 月終止支持 Microsoft .NET Framework 4.5.2、4.6 和 4.6.1 將于 2022 年 4 月終止支持 Apr 17, 2023 pm 02:25 PM

已安裝Microsoft.NET版本4.5.2、4.6或4.6.1的MicrosoftWindows用戶如果希望Microsoft將來(lái)通過(guò)產(chǎn)品更新支持該框架,則必須安裝較新版本的Microsoft框架。據(jù)微軟稱(chēng),這三個(gè)框架都將在2022年4月26日停止支持。支持日期結(jié)束后,產(chǎn)品將不會(huì)收到“安全修復(fù)或技術(shù)支持”。大多數(shù)家庭設(shè)備通過(guò)Windows更新保持最新。這些設(shè)備已經(jīng)安裝了較新版本的框架,例如.NETFramework4.8。未自動(dòng)更新的設(shè)備可能

PHP實(shí)現(xiàn)框架:Zend Framework入門(mén)教程 PHP實(shí)現(xiàn)框架:Zend Framework入門(mén)教程 Jun 19, 2023 am 08:09 AM

PHP實(shí)現(xiàn)框架:ZendFramework入門(mén)教程ZendFramework是PHP開(kāi)發(fā)的一種開(kāi)源網(wǎng)站框架,目前由ZendTechnologies維護(hù),ZendFramework采用了MVC設(shè)計(jì)模式,提供了一系列可重用的代碼庫(kù),服務(wù)于實(shí)現(xiàn)Web2.0應(yīng)用程序和Web服務(wù)。ZendFramework深受PHP開(kāi)發(fā)者的歡迎和推崇,擁有廣泛

如何使用寶塔面板進(jìn)行MySQL管理 如何使用寶塔面板進(jìn)行MySQL管理 Jun 21, 2023 am 09:44 AM

寶塔面板是一種功能強(qiáng)大的面板軟件,它可以幫助我們快速部署、管理和監(jiān)控服務(wù)器,尤其是經(jīng)常需要進(jìn)行網(wǎng)站搭建、數(shù)據(jù)庫(kù)管理以及服務(wù)器維護(hù)的小型企業(yè)或個(gè)人用戶。在這些任務(wù)中,MySQL數(shù)據(jù)庫(kù)管理在很多情況下是一個(gè)重要的工作。那么如何使用寶塔面板進(jìn)行MySQL管理呢?接下來(lái),我們將逐步介紹。第一步:安裝寶塔面板在開(kāi)始使用寶塔面板進(jìn)行MySQL管理之前,首先需要安裝寶塔面

如何使用PHP腳本在Linux環(huán)境下進(jìn)行數(shù)據(jù)庫(kù)操作 如何使用PHP腳本在Linux環(huán)境下進(jìn)行數(shù)據(jù)庫(kù)操作 Oct 05, 2023 pm 03:48 PM

如何使用PHP在Linux環(huán)境下進(jìn)行數(shù)據(jù)庫(kù)操作在現(xiàn)代web應(yīng)用程序中,數(shù)據(jù)庫(kù)是必不可少的組成部分。PHP是一種流行的服務(wù)器端腳本語(yǔ)言,它可以與各種數(shù)據(jù)庫(kù)進(jìn)行交互。本文將介紹如何在Linux環(huán)境下使用PHP腳本進(jìn)行數(shù)據(jù)庫(kù)操作,并提供一些具體的代碼示例。步驟1:安裝必要的軟件和依賴(lài)項(xiàng)在開(kāi)始之前,我們需要確保在Linux環(huán)境下安裝了PHP和相關(guān)的依賴(lài)項(xiàng)。通常情況下

如何在Zend框架中使用ACL(Access Control List)進(jìn)行權(quán)限控制 如何在Zend框架中使用ACL(Access Control List)進(jìn)行權(quán)限控制 Jul 29, 2023 am 09:24 AM

如何在Zend框架中使用ACL(AccessControlList)進(jìn)行權(quán)限控制導(dǎo)言:在一個(gè)Web應(yīng)用程序中,權(quán)限控制是至關(guān)重要的一項(xiàng)功能。它可以確保用戶只能訪問(wèn)其有權(quán)訪問(wèn)的頁(yè)面和功能,并防止未經(jīng)授權(quán)的訪問(wèn)。Zend框架提供了一種方便的方法來(lái)實(shí)現(xiàn)權(quán)限控制,即使用ACL(AccessControlList)組件。本文將介紹如何在Zend框架中使用ACL

See all articles