Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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); ?>
Advertisements
