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--EXPECTF--
18*** Testing ezmlm_hash() : basic functionality ***
19
20Deprecated: Function ezmlm_hash() is deprecated in %s on line %d
21int(1)
22
23Deprecated: Function ezmlm_hash() is deprecated in %s on line %d
24int(7)
25===Done===
26