API16

JSessionStorageApc/test: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Test to see if the SessionHandler is available. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JSessionStorageApc/test|Edit Descri...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Test to see if the SessionHandler is available.
Test to see if the SessionHandler is available.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JSessionStorageApc/test|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JSessionStorageApc/test}}
 
 


===Syntax===
===Syntax===
Line 27: Line 25:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageApc/test|Edit See Also]]<nowiki>]</nowiki>
 
</span>
{{SeeAlso:JSessionStorageApc/test}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=test
  category=test
  category=JSessionStorageApc
  category=JSessionStorageApc
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 02:04, 25 March 2017

Description

Test to see if the SessionHandler is available.



Syntax

test()


Returns

boolean True on success, false otherwise.

Defined in

libraries/joomla/session/storage/apc.php

Importing

jimport( 'joomla.session.storage.apc' );

Source Body

function test() {
        return extension_loaded('apc');
}



Examples

Code Examples