⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstract.php

📁 一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:按照需要PHP5.1以上和MySQL数据库支持。
💻 PHP
字号:
<?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 Table * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License * @version    $Id: Abstract.php 163 2008-01-14 04:40:16Z matt $ *//** * @see Zend_Db_Table_Row */require_once 'Zend/Db/Table/Row.php';/** * @category   Zend * @package    Zend_Db * @subpackage Table * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License */abstract class Zend_Db_Table_Rowset_Abstract implements Iterator, Countable{    /**     * The original data for each row.     *     * @var array     */    protected $_data = array();    /**     * Zend_Db_Table_Abstract object.     *     * @var Zend_Db_Table_Abstract     */    protected $_table;    /**     * Connected is true if we have a reference to a live     * Zend_Db_Table_Abstract object.     * This is false after the Rowset has been deserialized.     *     * @var boolean     */    protected $_connected = true;    /**     * Zend_Db_Table_Abstract class name.     *     * @var string     */    protected $_tableClass;    /**     * Zend_Db_Table_Row_Abstract class name.     *     * @var string     */    protected $_rowClass = 'Zend_Db_Table_Row';    /**     * Iterator pointer.     *     * @var integer     */    protected $_pointer = 0;    /**     * How many data rows there are.     *     * @var integer     */    protected $_count;    /**     * Collection of instantiated Zend_Db_Table_Row objects.     *     * @var array     */    protected $_rows = array();    /**     * @var boolean     */    protected $_stored = false;    /**     * Constructor.     */    public function __construct(array $config)    {        if (isset($config['table'])) {            $this->_table      = $config['table'];            $this->_tableClass = get_class($this->_table);        }        if (isset($config['rowClass'])) {            $this->_rowClass   = $config['rowClass'];        }        if (isset($config['data'])) {            $this->_data       = $config['data'];        }        if (isset($config['stored'])) {            $this->_stored     = $config['stored'];        }        // set the count of rows        $this->_count = count($this->_data);    }    /**     * Store data, class names, and state in serialized object     *     * @return array     */    public function __sleep()    {        return array('_data', '_tableClass', '_rowClass', '_pointer', '_count', '_rows', '_stored');    }    /**     * Setup to do on wakeup.     * A de-serialized Rowset should not be assumed to have access to a live     * database connection, so set _connected = false.     *     * @return void     */    public function __wakeup()    {        $this->_connected = false;    }    /**     * Returns the table object, or null if this is disconnected rowset     *     * @return Zend_Db_Table_Abstract|null     */    public function getTable()    {        return $this->_table;    }    /**     * Set the table object, to re-establish a live connection     * to the database for a Rowset that has been de-serialized.     *     * @param Zend_Db_Table_Abstract $table     * @return boolean     * @throws Zend_Db_Table_Row_Exception     */    public function setTable(Zend_Db_Table_Abstract $table)    {        $this->_table = $table;        $this->_connected = false;        // @todo This works only if we have iterated through        // the result set once to instantiate the rows.        foreach ($this->_rows as $row) {            $connected = $row->setTable($table);            if ($connected == true) {                $this->_connected = true;            }        }        return $this->_connected;    }    /**     * Query the class name of the Table object for which this     * Rowset was created.     *     * @return string     */    public function getTableClass()    {        return $this->_tableClass;    }    /**     * Rewind the Iterator to the first element.     * Similar to the reset() function for arrays in PHP.     * Required by interface Iterator.     *     * @return void     */    public function rewind()    {        $this->_pointer = 0;    }    /**     * Return the current element.     * Similar to the current() function for arrays in PHP     * Required by interface Iterator.     *     * @return Zend_Db_Table_Row_Abstract current element from the collection     */    public function current()    {        if ($this->valid() === false) {            return null;        }        // do we already have a row object for this position?        if (empty($this->_rows[$this->_pointer])) {            $this->_rows[$this->_pointer] = new $this->_rowClass(                array(                    'table'   => $this->_table,                    'data'    => $this->_data[$this->_pointer],                    'stored'  => $this->_stored                )            );        }        // return the row object        return $this->_rows[$this->_pointer];    }    /**     * Return the identifying key of the current element.     * Similar to the key() function for arrays in PHP.     * Required by interface Iterator.     *     * @return int     */    public function key()    {        return $this->_pointer;    }    /**     * Move forward to next element.     * Similar to the next() function for arrays in PHP.     * Required by interface Iterator.     *     * @return void     */    public function next()    {        ++$this->_pointer;    }    /**     * Check if there is a current element after calls to rewind() or next().     * Used to check if we've iterated to the end of the collection.     * Required by interface Iterator.     *     * @return bool False if there's nothing more to iterate over     */    public function valid()    {        return $this->_pointer < $this->_count;    }    /**     * Returns the number of elements in the collection.     *     * Implements Countable::count()     *     * @return int     */    public function count()    {        return $this->_count;    }    /**     * Returns true if and only if count($this) > 0.     *     * @return bool     * @deprecated since 0.9.3; use count() instead     */    public function exists()    {        return $this->_count > 0;    }    /**     * Returns all data as an array.     *     * Updates the $_data property with current row object values.     *     * @return array     */    public function toArray()    {        // @todo This works only if we have iterated through        // the result set once to instantiate the rows.        foreach ($this->_rows as $i => $row) {            $this->_data[$i] = $row->toArray();        }        return $this->_data;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -