Function Forum_driver_phpbb3->_get_member_email_address

Definitions

sources/forum/phpbb3.php

  • Get the e-mail address for the specified member ID.
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: string

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$member_id MEMBER No No required parameter N/A N/A The member ID

Returns

  • The e-mail address
  • Type: SHORT_TEXT
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Get the e-mail address for the specified member ID.
 *
 * @param  MEMBER $member_id The member ID
 * @return SHORT_TEXT The e-mail address
 */

protected function _get_member_email_address(int $member_id) : string