mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
13 lines
270 B
PHP
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);
|
|
}
|
|
}
|
|
|
|
?>
|