ezmlm_hash
(PHP 4 >= 4.0.2, PHP 5, PHP 7)
ezmlm_hash — 計算 EZMLM 所需的雜湊值
警告
This function has been DEPRECATED as of PHP 7.4.0, and REMOVED as of PHP 8.0.0. Relying on this function is highly discouraged.
說明
ezmlm_hash(string
$addr
): intezmlm_hash() 計算用於在 MySQL 數據庫中儲存 EZMLM 郵件列表的雜湊值。
參數
-
addr
-
要進行雜湊演算法的電子郵件地址。
返回值
addr
的雜湊值。
範例
示例 #1 計算雜湊值並訂閱一個使用者
<?php
$user = "[email protected]";
$hash = ezmlm_hash($user);
$query = sprintf("INSERT INTO sample VALUES (%s, '%s')", $hash, $user);
$db->query($query); // using PHPLIB db interface
?>