Php-mysql Course

Since version 5.2, PHP has provided a DateTime class that can handle much more date and time information at the same time, rather than working with separate date and time functions. Also, it works hand-in-hand with the new DateTimeZone class.

DateTime()

To use the DateTime class, and generally any class, you need to create an object of the class, with the new keyword.
  - Syntax:
$now = new DateTime("time", obj_timezone);
This creates an instance of the DateTime class and stores it in a DateTime object called $now. The DateTime object is aware not only of the date and time it was created but also of the time zone used by the web server.
- The "time" argument is optional, it is a string with a valid literaly date/time format. If it is not added, PHP use current time.
- The "obj_timezone" is also optional, an object created with "new DateTimeZone()" representing the desired time zone (i.g new DateTimeZone('America/New_York')).
When using the 'obj_timezone' parameter, enter NULL for "time" argument to obtain the current time.

Most classes have properties and methods, which are similar to variables and functions, they're related only to a particular instance of a class. For example, you can use the methods of the DateTime classs to change certain values, such as the month, year, or perform date calculations.
The object's properties and methods can be accessed using the "->" operator.
$object->property       or       $object->method()
The DateTime object uses only methods, here is some examples:

format("format")

Returns a date string according to given "format" on success, or FALSE on failure.
  - Example (get and output the current date/time and the day of the week of a specified date):
<?php
// get and output the current date/time
$date = new DateTime();
echo $date->format('Y-m-d H:i:s');              // 2011-03-21 14:08:00

// output the day of the week of a specified date
$date = new DateTime('15-10-2012');          // can also be used: "15-October-2012", "2012-Oct-15"
echo '<br /> 15-10-2012 ia a '. $date->format('l');              // 15-10-2012 ia a Monday
?>
Output:
2011-03-21 14:08:00
15-10-2012 ia a Monday

setDate(year, month, day)

Resets the current date of the DateTime object to a different date (given with the parameters).

setTime(hour, minute, seconds)

Resets the current date of the DateTime object to a different time (given with the parameters, "seconds" is optional).
  - Example (set a new date and time for DateTime object and display it):
<?php
// set a new date and time and display it
$date = new DateTime();

// set a new date
$date->setDate(2012, 10, 15);

// set a new time
$date->setTime(12, 32);

echo $date->format('Y-m-d H:i:s');
?>
Output:
2012-10-15 12:32:00

getTimestamp()

Returns the Unix timestamp of a DateTime object.
  - Example ():
<?php
$date = new DateTime();
echo 'Current Timestamp: '. $date->getTimestamp();
?>
Outputs something like:
Current Timestamp: 1300710802

setTimestamp()

Sets the date and time based on an Unix timestamp.
  - Example ():
<?php
$date = new DateTime();
echo 'Current date/time: '. $date->format('Y-m-d H:i:s');

$date->setTimestamp(1178902725);
echo '<br /> Date time of the 1178902725 timestamp: '. $date->format('Y-m-d H:i:s');
?>
Outputs something like:
Current date/time: 2011-03-21 14:40:49
Date time of the 1178902725 timestamp: 2007-05-11 19:58:45

setTimezone()

The setTimezone class can be used to reset /change the time zone of a DateTime object.
  - Example:
<?php
// get and display the current time in Pacific/Auckland
$dtz = new DateTimeZone('Pacific/Auckland') ;
$date = new DateTime(NULL, $dtz);

echo  $date->format('H:i:s');              // 01:58:02
?>
Outputs something like:
01:58:02

• If you want to get the difference between two dates, you need to set a DateTime object for each one. Than, apply the diff() method (returns a DateInterval object representing the difference between the two dates).
  - Example, output the difference between the current time and "1996-07-07 14:45:00":
<?php
// set an object with the current date
$dateNow = new DateTime();
$now = $dateNow->format("Y-m-d H:i");           // store the currend date

// the second date
$date2 = new DateTime('1996-07-07 14:45:00');

// apply the diff() method, getting a DateInterval object ($diDiff)
$diDiff = $dateNow->diff($date2) ;

echo 'The difference between: '. $now. ' and "1996-07-07 14:45" is: '. $diDiff->format('%y year, %m months, %d days, %h hours, and %i minutes.');
?>
This code will output something like:
The difference between: 2011-03-21 15:26 and "1996-07-07 14:45" is: 14 year, 8 months, 14 days, 0 hours, and 41 minutes.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag adds an image in web page?
<div> <img> <span>
<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Which of these CSS codes displays the text oblique?
font-style: italic; text-decoration: underline; font-weight: 500;
#id {
  font-style: italic;
}
Click on the jQuery function used to hide with animation a HTML element.
click() hide() show()
$(document).ready(function() {
  $(".a_class").click(function(){ $(this).hide("slow"); });
});
Click on the correctly defined function in PHP.
fname function() {} function fname() {} function $fname() {};
function fname($a, $b) {
  echo $a * $b;
}
PHP DateTime and DateTimeZone classes

Last accessed pages

  1. Upload Files with Express and Multer (1966)
  2. Cookies (829)
  3. MySQL Query Builder: Insert, Update, Delete (1580)
  4. Ajax-PHP Rating Stars Script (16727)
  5. Introduction to ActionScript 3 (3279)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (320)
  2. Read Excel file data in PHP - PhpExcelReader (117)
  3. The Four Agreements (96)
  4. PHP Unzipper - Extract Zip, Rar Archives (92)
  5. The Mastery of Love (85)