君山 发表于 2020-9-29 11:10:21

Discuz dexit 函数 退出程序兼容函数



/**
* 退出程序 同 exit 的区别, 对输出数据会进行 重新加工和处理
* 通常情况下,我们建议使用本函数终止程序, 除非有特别需求
* @param <type> $message
*/
function dexit($message = '') {
        echo $message;
        output();
        exit();
}
页: [1]
查看完整版本: Discuz dexit 函数 退出程序兼容函数