ezmlm_hash() function in PHP



The ezmlm_hash() function calculates the hash value needed when keeping EZMLM mailing lists in a MySQL database.

Syntax

ezmlm_hash(addr);

Parameters

  • addr − The email address being hashed.

Return

The ezmlm_hash() function returns the hash value of addr.

Example

The following is an example −

<?php
   $username = "abcd@example.com";
   $hash = ezmlm_hash($username);
?>
Updated on: 2019-07-30T22:30:24+05:30

132 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements