Login   Register  
PHP Classes
elePHPant
Icontem

File: test/testDel.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Rubens Takiguti Ribeiro  >  PHP Smart Session  >  test/testDel.php  >  Download  
File: test/testDel.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: 2013-04-29 21:02
Size: 556 bytes
 

Contents

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

$hasBefore SmartSession::getInstance()->has('value');
SmartSession::getInstance()->del('value');
$hasAfter SmartSession::getInstance()->has('value');

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

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