Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/php/users.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Note that this will only send if the account for the email requested has not alr

It would be bothersome if the user had to log in every time they open your app. You can avoid this by using the cached current `ParseUser` object.

By default, whenever you use any signup or login methods, the user will be saved in PHP Session storage (The `$_SESSION` superglobal.)
By default, whenever you use any signup or login methods, the user will be saved in PHP Session storage, the `$_SESSION` superglobal. When re-initializing the Parse PHP SDK, you may need to instruct PHP to load the stored session data into the `$_SESSION` superglobal using `session_start()` before initializing the Parse PHP SDK to make Parse use persistent storage and continue the previous user session.

```php
$currentUser = ParseUser::getCurrentUser();
Expand Down