PHP Classes

File: test/testClear.php

Recommend this page to a friend!
  Classes of Rubens Takiguti Ribeiro   PHP Smart Session   test/testClear.php   Download  
File: test/testClear.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script for test
Class: PHP Smart Session
Access sessions initialized only when necessary
Author: By
Last change:
Date: 10 years ago
Size: 318 bytes
 

Contents

Class file image Download
<?php
require_once(__DIR__ . '/../SmartSession.php');

SmartSession::getInstance()->clearSession();

$json = array(
   
'open' => SmartSession::getInstance()->sessionIsOpen(),
   
'exist' => SmartSession::getInstance()->sessionExists()
);

header('Content-type: application/json');
echo
json_encode($json);
exit(
0);