Difference between revisions of "Learning PHP (2)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
Line 3: Line 3:
 
== Timestamp ==
 
== Timestamp ==
  
...
+
PHP provides the timestamp() function, which returns the time (from the server clock).
 +
 
 +
The time can be formatted and used in a variety of ways.
 +
 
 +
Code snippet:
 +
 
 +
<pre>
 +
<p><?php echo ; ?></p>
 +
</pre>
 +
 
 +
Observe how the above code snippet mixes HTML with PHP code islands.
 +
 
 +
[http://code.karljones.com/php/timestamp/ View online].
 +
 
 +
Use your browser's View Source or Inspect Element to confirm that the [[web page]]'s [[source code]] contains only HTML, no PHP.
  
 
See [[PHP timestamp]] for more information.
 
See [[PHP timestamp]] for more information.

Revision as of 10:49, 3 September 2015

This article contains examples of PHP.

Timestamp

PHP provides the timestamp() function, which returns the time (from the server clock).

The time can be formatted and used in a variety of ways.

Code snippet:

<p><?php echo ; ?></p>

Observe how the above code snippet mixes HTML with PHP code islands.

View online.

Use your browser's View Source or Inspect Element to confirm that the web page's source code contains only HTML, no PHP.

See PHP timestamp for more information.

Date

PHP provides the date() function, which returns date and time.

The date and time can be formatted and used in a variety of ways.

Code snippet:

<p><?php echo date("Y/m/d"); ?></p>
<p><?php echo date("l"); ?></p>

Observe how the above code snippet mixes HTML with PHP code islands.

View online.

Use your browser's View Source or Inspect Element to confirm that the web page's source code contains only HTML, no PHP.

See PHP date for more information.

See Also

External links

Documentation

Tutorials