Files
nexusphp/include/smtp/net.const.php

13 lines
270 B
PHP
Raw Normal View History

2020-12-26 01:42:23 +08:00
<?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);
}
}
?>