This commit is contained in:
xiaomlove
2020-12-26 01:42:23 +08:00
commit a3ba82be64
949 changed files with 60612 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?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);
}
}
?>