> Full SurrealDB documentation index: https://surrealdb.com/docs/llms.txt

# info

The info method returns information about the authenticated user in the SurrealDB PHP SDK.

This method returns the authenticated record user.

```php title="Method Syntax"
$db->info()
```

## Example usage
```php
$user = $db->info();
```
