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