mirror of
https://github.com/dg/dibi.git
synced 2025-02-24 10:53:17 +01:00
106 lines
1.8 KiB
PHP
106 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* dibi - tiny'n'smart database abstraction layer
|
|
* ----------------------------------------------
|
|
*
|
|
* @copyright Copyright (c) 2005, 2010 David Grudl
|
|
* @license http://dibiphp.com/license dibi license
|
|
* @link http://dibiphp.com
|
|
* @package dibi
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
* Result-set single row.
|
|
*
|
|
* @copyright Copyright (c) 2005, 2010 David Grudl
|
|
* @package dibi
|
|
*/
|
|
class DibiRow extends ArrayObject
|
|
{
|
|
|
|
/**
|
|
* @param array
|
|
*/
|
|
public function __construct($arr)
|
|
{
|
|
parent::__construct($arr, 2);
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Converts value to DateTime object.
|
|
* @param string key
|
|
* @return DateTime
|
|
*/
|
|
public function asDateTime($key)
|
|
{
|
|
$time = $this[$key];
|
|
return (int) $time === 0 // '', NULL, FALSE, '0000-00-00', ...
|
|
? NULL
|
|
: new DateTime53(is_numeric($time) ? date('Y-m-d H:i:s', $time) : $time);
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Converts value to UNIX timestamp.
|
|
* @param string key
|
|
* @return int
|
|
*/
|
|
public function asTimestamp($key)
|
|
{
|
|
$time = $this[$key];
|
|
return (int) $time === 0 // '', NULL, FALSE, '0000-00-00', ...
|
|
? NULL
|
|
: (is_numeric($time) ? (int) $time : strtotime($time));
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Converts value to boolean.
|
|
* @param string key
|
|
* @return mixed
|
|
*/
|
|
public function asBool($key)
|
|
{
|
|
$value = $this[$key];
|
|
if ($value === NULL || $value === FALSE) {
|
|
return $value;
|
|
|
|
} else {
|
|
return ((bool) $value) && $value !== 'f' && $value !== 'F';
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* PHP < 5.3 workaround
|
|
* @return void
|
|
*/
|
|
public function __wakeup()
|
|
{
|
|
$this->setFlags(2);
|
|
}
|
|
|
|
|
|
|
|
/** @deprecated */
|
|
public function asDate($key, $format = NULL)
|
|
{
|
|
if ($format === NULL) {
|
|
return $this->asTimestamp($key);
|
|
} elseif ($format === TRUE) {
|
|
return $this->asDateTime($key);
|
|
} else {
|
|
return $this->asDateTime($key)->format($format);
|
|
}
|
|
}
|
|
|
|
}
|