自动从数据库中选择日期作为Zend_Date对象

时间:2009-10-30 01:39:04

标签: oracle zend-framework timestamp zend-date

根据我的理解,在Zend Framework中处理日期的最佳方法是从数据库中选择它们作为Unix时间戳。

Quick Creation of Dates from Database Date Values

// SELECT UNIX_TIMESTAMP(my_datetime_column) FROM my_table
$date = new Zend_Date($unixtimestamp, Zend_Date::TIMESTAMP);

我认为在Oracle中实际上没有简单的方法可以选择日期作为Unix时间戳或ISO-8601格式 - 这是Zend_Date最了解的两种格式。

但是我确实编写了一个函数来选择日期作为PL / SQL中的unix时间戳,所以我现在可以实际执行此操作。

使用Zend_Db_Expr,我现在可以选择我的日期作为Unix时间戳:

$select = $db->select()
             ->from(array('p' => 'products'),
                    array(
                        'product_id',
                        'product_date' => new Zend_Db_Expr('toUnixTimestamp(product_date)')
                    )
               );

$results = $db->fetchAll($select);

您可以对任何RDMS使用类似的查询 - 大多数都有时间戳功能。

我发现这很烦人,因为现在我必须循环$ results以手动将时间戳转换为Zend_Date对象:

foreach($results as $result){
    $productDate = new Zend_Date($result['product_date'], Zend_Date::TIMESTAMP);
    echo $productDate->toString('dd/MMM/yyyy HH:mm:ss');
}

我希望我的模型返回$ results,其中时间戳已经转换为Zend_Date。我不想在每个数据访问函数中编写一个循环来为我做这个。

所以要明白我的实际问题:

有没有人知道Zend_Db的一种方法,在结果集上设置某种后处理,从而自动将时间戳转换为Zend_Date对象? < / p>

2 个答案:

答案 0 :(得分:6)

我遇到了我想要这样做的场景。这是我用过的解决方案:

  • 为Zend_Db_Table_Row创建了一个扩展行类,并重载了__get()和__set()超级方法
  • 在我想使用日期对象的特定类/表中,创建了适当的方法来进行繁重的工作

以下是我在项目中使用的扩展行类的简化版本:

/**
 * @category   FireUp
 * @package    FireUp_Db
 * @copyright  Copyright (c) 2007-2009 Fire Up Media, Inc. (http://www.fireup.net)
 * @license    http://dev.fireup.net/license/mit     MIT License
 * @uses       Zend_Db_Table_Row
 */
class FireUp_Db_Table_Row extends Zend_Db_Table_Row_Abstract
{
    /**
     * Retrieve row field value
     *
     * Checks for the existence of a special method to apply additional handling for the field data and calls the method if it exists
     *
     * @param  string $columnName The user-specified column name.
     * @return string             The corresponding column value.
     * @throws Zend_Db_Table_Row_Exception if the $columnName is not a column in the row.
     */
    public function __get($key)
    {
        $inflector = new Zend_Filter_Word_UnderscoreToCamelCase();

        $method = '_get' . $inflector->filter($key);

        if (method_exists($this, $method))
        {
            return $this->{$method}();
        }

        return parent::__get($key);
    }

    /**
     * Set row field value
     *
     * Checks for the existence of a special method to apply additional handling for the field data and calls the method if it exists
     *
     * @param  string $columnName The column key.
     * @param  mixed  $value      The value for the property.
     * @return void
     * @throws Zend_Db_Table_Row_Exception
     */
    public function __set($key, $value)
    {
        $inflector = new Zend_Filter_Word_UnderscoreToCamelCase();

        $method = '_set' . $inflector->filter($key);

        if (method_exists($this, $method))
        {
            return $this->{$method}($value);
        }

        return parent::__set($key, $value);
    }
}

对于我们的各个表类,我们重写函数:

class EntityRecord extends FireUp_Db_Table_Row
{
    protected function _getDateCreated()
    {
        return new Zend_Date($this->_data['date_created'], Zend_Date::ISO_8601);
    }

    protected function _setDateCreated($value)
    {
        if ($value instanceof Zend_Date)
        {
            $value = $value->toString('YYYY-MM-dd HH:mm:ss');
        }

        $this->_data['date_created'] = $value;
        $this->_modifiedFields['date_created'] = true;
    }
}

现在,每次访问该字段时创建一个新的Zend_Date对象都会产生一些开销,所以在我们的类中,我们采取额外的措施来缓存日期对象等,但我不希望这样做会妨碍告诉你解决方案。

答案 1 :(得分:0)

使用Zend_Table并让您的表返回extend Zend_Db_Table_Row_Abstract的自定义行对象。然后在该行上有一个方法,如

function getDate() {
    return new Zend_Date($this->datecol, Zend_Date::TIMESTAMP);
}