wenprise/session-manager

There is no license information available for the latest version (v0.1.7) of this package.

Native PHP sessions stored in the database or object cache.

v0.1.7 2024-12-09 06:20 UTC

This package is auto-updated.

Last update: 2025-03-14 09:38:07 UTC


README

初始化

add_action('plugins_loaded', fucntion(){
   new \Wenprise\SessionManager\Init();
});

使用方法

$_SESSION['example_key'] = 'ABC123';

print_r($_SESSION['example_key']); // will print "ABC123"