目录

PHP ezmlm_hash() 函数

❮ PHP 邮件参考

示例

计算电子邮件地址的哈希值:

<?php
$user = "someone@example.com";
$hash = ezmlm_hash($user);

echo "The hash value for $user is: $hash.";
?>

定义和用法

ezmlm_hash() 函数计算在 MySQL 数据库中保存 EZMLM 邮件列表时所需的哈希值。

该函数接受一个电子邮件地址,并为其计算一个整数哈希值。该值与 EZMLM 邮件列表管理器兼容,然后可以与 EZMLM 数据库一起使用进行用户管理。


语法

ezmlm_hash( address);

参数值

Parameter Description
address Required. Specifies the email address being hashed

技术细节

返回值: 返回的哈希值地址参数,失败时为 FALSE
PHP 版本: 4.0.2+

❮ PHP 邮件参考