config.php
384 Bytes
<?php
//文本地址
define('TXTFILE',dirname(__FILE__).'/../cache/words.txt');
//编译文件
define('COMPILEFILE',dirname(__FILE__).'/../cache/wordsCompile.php');
//字典文件
define('DICTIONARYFILE',dirname(__FILE__).'/../cache/dictionary.php');
//禁止状态
define('PROHIBITION_STATE', 1);
//替换状态
define('REPLACE_STATE', 2);
//审核状态
define('CHECK_STATE', 3);
?>