API16

API16:JDate/toUnix

From Joomla! Documentation

Description

Gets the date as UNIX time stamp.


<! removed transcluded page call, red link never existed >

Syntax

toUnix()


Returns

integer The date as a UNIX timestamp.

Defined in

libraries/joomla/utilities/date.php

Importing

jimport( 'joomla.utilities.date' );

Source Body

public function toUnix()
{
        return (int) parent::format('U');
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples