Description

Outputs the project's date.

Usage

<?php 
	echo projectDate( $format ); 
?>

Parameters


$format

  • string
  • optional
  • default: d. F Y

Defines how the date should be formatted. See the date documentation on php.net for the full list of format options.

Examples

2011.03.26 - 20:29

<?php 
	echo projectDate( 'Y.m.d - h:i' ); 
?>