PHP date_create


 

PHP date_create

In this example we will see the use of PHP date_create function. The PHP date_create method returns date and time object.

In this example we will see the use of PHP date_create function. The PHP date_create method returns date and time object.

date_create ()

date_create function returns new DateTime object. It returns DateTime object on success or returns FALSE on failure. This functions was introduced in PHP 5.1.0.

Description

DateTime date_create ([ string $time= "now" [, DateTimeZone $timezone= NULL ]] )

Parameters

time - String in a format accepted by strtotime(), defaults to "now".

timezone - Time zone of the time.

 

Ads