AppserverIo\Appserver\ServletEngine\Session\FilesystemSessionHandler::removeSessionFile PHP Méthode

removeSessionFile() protected méthode

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
Résultat boolean TRUE if the file has successfully been removed, else FALSE
    protected function removeSessionFile($pathname)
    {
        if (file_exists($pathname)) {
            return unlink($pathname);
        }
        return false;
    }