Files
nexusphp/include/smtp/net.const.php
xiaomlove a3ba82be64 init
2020-12-26 01:42:23 +08:00

13 lines
270 B
PHP

<?php
$mechs = array('LOGIN', 'PLAIN', 'CRAM_MD5');
foreach ($mechs as $mech) {
if (!defined($mech)) {
define($mech, $mech);
} elseif (constant($mech) != $mech) {
trigger_error(sprintf("Constant %s already defined, can't proceed", $mech), E_USER_ERROR);
}
}
?>