Extending Access Tokens since the removal of offline access, facebook offers an extension to the 2 hour tokens given by default.
refer to: https://developers.facebook.com/docs/howtos/login/extending-tokens/
deprecated
offline_access
Enables your app to perform authorized requests on behalf of the user at any time. By default, most access tokens expire after a short time period to ensure applications only make requests on behalf of the user when the are actively using the application. This permission makes the access token returned by our OAuth endpoint long-lived.
https://developers.facebook.com/docs/reference/api/permissions/#publishing
Using offline access should extend that login period.
i cannot say how long you users will stay logged in, but in my app at https://apps.facebook.com/anotherfeed i have been logged in for about 4 days now.
11.30.2011:11:14am
I was able to successfully logout with Javascript SDK with offline permission, but Failed to logout yet with PHP-SDK.