AppserverIo\Appserver\ServletEngine\Session\FilesystemSessionHandler::removeSessionFile PHP Метод

removeSessionFile() защищенный Метод

Removes the session file with the passed name containing session data.
protected removeSessionFile ( string $pathname ) : boolean
$pathname string The path of the file to remove
Результат boolean TRUE if the file has successfully been removed, else FALSE
    protected function removeSessionFile($pathname)
    {
        if (file_exists($pathname)) {
            return unlink($pathname);
        }
        return false;
    }