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;
    }