1--TEST-- 2Test ezmlm_hash() function : basic functionality 3--FILE-- 4<?php 5/* Prototype : int ezmlm_hash ( string $addr ) 6 * Description: Calculate the hash value needed by EZMLM. 7 * Source code: ext/standard/mail.c 8 */ 9 10echo "*** Testing ezmlm_hash() : basic functionality ***\n"; 11 12var_dump(ezmlm_hash("webmaster@somewhere.com")); 13var_dump(ezmlm_hash("foo@somewhere.com")); 14 15?> 16===Done=== 17--EXPECT-- 18*** Testing ezmlm_hash() : basic functionality *** 19int(1) 20int(7) 21===Done=== 22