readDateOrDateTime() 공개 정적인 메소드

Parse the provided string into a PHP DateTime object.
public static readDateOrDateTime ( string $date, string $timezone = null ) : DateTime
$date string The string representation of the date (& time).
$timezone string The associated timezone. Deprecated.
리턴 DateTime The date-time value represented as PHP DateTime object.
예제 #1
0
파일: V1.php 프로젝트: horde/horde
 /**
  * Load the value of a node.
  *
  * @param DOMNode                       $node   Retrieve value for this node.
  * @param Horde_Kolab_Format_Xml_Helper $helper A XML helper instance.
  * @param array                         $params Additiona parameters for
  *                                              this parse operation.
  *
  * @return mixed|null The value or null if no value was found.
  */
 public function loadNodeValue($node, Horde_Kolab_Format_Xml_Helper $helper, $params = array())
 {
     $result = $helper->fetchNodeValue($node);
     return Horde_Kolab_Format_Date::readDateOrDateTime($result);
 }