<?php
require_once("AllSession.php");
$allSession =& new AllSession();
echo "<pre>";
// セッションIDの配列
print_r($allSession->sessionId);
// $sessions["セッションID"] = セッションの中身
print_r($allSession->sessions);
echo "<pre>";
?>
session.save_pathからsess~というファイルを復元しています。
共有サーバなんかはsafe mode or CGI&SuEXECが必須かもしれないですね。
ref: セパレータとして ””|”” を使ってるんですよ
ref: PHPのセッション自力復元