JSession/getExpire: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Get expiration time in minutes
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowik... |
m clean up |
||
| Line 2: | Line 2: | ||
Get expiration time in minutes | Get expiration time in minutes | ||
{{Description:JSession/getExpire}} | |||
{{subst:Description:JSession/getExpire}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 28: | Line 26: | ||
</source> | </source> | ||
{{subst:SeeAlso:JSession/getExpire}} | |||
{{SeeAlso:JSession/getExpire}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:23, 24 March 2017
Description
Get expiration time in minutes
{{subst:Description:JSession/getExpire}}
Syntax
getExpire()
Returns
integer The session expiration time in minutes
Defined in
libraries/joomla/session/session.php
Importing
jimport( 'joomla.session.session' );
Source Body
public function getExpire()
{
return $this->_expire;
}
{{subst:SeeAlso:JSession/getExpire}}
Examples
<CodeExamplesForm />