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