IntlCalendar::toDateTime
  Convert an IntlCalendar into a DateTime object
  
 
  Description
  
   Object oriented style
  
  
   public DateTime IntlCalendar::toDateTime
    ( void
   )
  
  
   DateTime intlcal_to_date_time
    ( IntlCalendar $cal
   )
  
  
 
  Parameters
  
   
    - 
cal
- 
     
      The IntlCalendar resource.
      
 
 
  Return Values
  
   A DateTime object with the same timezone as this
   object (though using PHPʼs database instead of ICUʼs) and the same time,
   except for the smaller precision (second precision instead of millisecond).
   Returns FALSE on failure.
  
  
 
  Examples
  
   
   Example #1 IntlCalendar::toDateTime
    
<?php
ini_set('date.timezone', 'UTC');
ini_set('intl.default_locale', 'pt_PT');
$cal = IntlCalendar::createInstance('Europe/Lisbon'); //current time
$dt = $cal->toDateTime();
print_r($dt);
     
    The above example will output:
DateTime Object
(
    [date] => 2013-07-02 00:29:13
    [timezone_type] => 3
    [timezone] => Europe/Lisbon
)
 
    
  
  
 
  See Also
  
   
    -  IntlCalendar::fromDateTime
-  IntlCalendar::getTime
-  IntlCalendar::createInstance
-  DateTime:__construct