phpsocks5/Workerman/Lib/Constants.php
2015-04-04 21:46:31 +08:00

13 lines
305 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// 如果ini没设置时区则设置一个默认的
if(!ini_get('date.timezone') )
{
date_default_timezone_set('Asia/Shanghai');
}
// 显示错误到终端
ini_set('display_errors', 'on');
// 连接失败
define('WORKERMAN_CONNECT_FAIL', 1);
// 发送失败
define('WORKERMAN_SEND_FAIL', 2);