API15:JDate/toMySQL
From Joomla! Documentation
Description
Gets the date as in MySQL datetime format
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
toMySQL($local=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $local | false |
Returns
a date in MySQL datetime format
Defined in
libraries/joomla/utilities/date.php
Importing
jimport( 'joomla.utilities.date' );
Source Body
function toMySQL($local = false)
{
$date = ($local) ? $this->_date + $this->_offset : $this->_date;
$date = ($this->_date !== false) ? date('Y-m-d H:i:s', $date) : null;
return $date;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples