date_time_set

(PHP 5 >= 5.1.0)

date_time_set — Sets the time

Описание

void date_time_set ( DateTime $object , int $hour , int $minute [, int $second ] )
void DateTime::setTime ( int $hour , int $minute [, int $second ] )

Список параметров

object

DateTime object.

hour

Hour of the time.

minute

Minute of the time.

second

Second of the time.

Возвращаемые значения

Returns NULL on success or FALSE on failure.

Смотрите также

Коментарии

Автор:
<?php
   $dateSrc 
'2007-04-19 12:50 GMT';
   
$dateTime date_create$dateSrc);;
   
$retval date_time_set$dateTime204010);
   echo 
'DateTime::format(): '.$dateTime->format('Y:M:D:H:i:s');
   echo 
"\n";

   
# Using second function.
   
$dateTime = new DateTime($dateSrc);
   
$retval $dateTime->setTime(2056,6);
   echo 
'DateTime::format(): '.$dateTime->format('Y:M:D:H:i:s');
?>
2012-03-14 14:22:23
http://php5.kiev.ua/manual/ru/function.date-time-set.html

    Поддержать сайт на родительском проекте КГБ