Function __global->generate_guest_chat_name
Definitions
sources/chat.php
- Get the chat name for a Guest.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $ip_address | IP | No | No | required parameter | N/A | N/A | The IP address of the guest |
Returns
- The guest chat name
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Get the chat name for a Guest.
*
* @param IP $ip_address The IP address of the guest
* @return string The guest chat name
*/
function generate_guest_chat_name(string $ip_address) : string
* Get the chat name for a Guest.
*
* @param IP $ip_address The IP address of the guest
* @return string The guest chat name
*/
function generate_guest_chat_name(string $ip_address) : string

