/**下载到本地 */ static function httpcopy($url, $file = "", $timeout = 600) { if (empty($file)) return false; $dir = pathinfo($file, PATHINFO_DIRNA...
/** * 判断是否为utf8字符串 * @parem $str * @return bool 180it.com */ function is_utf8($str) { if ($str === mb_convert_encoding(mb_convert_encoding($str, "UTF-32&quo...
/**检查路径是否存在@parem $path@return bool */function path_exists($path){$pathinfo = pathinfo($path . '/tmp.txt'); if (!empty($pathinfo ['dirname'])) { if (file_exists($pathinfo ['dirname']) === false...
/** * 写文件 */ function put_file($file, $content, $flag = 0) { $pathinfo = pathinfo($file); if (!empty($pathinfo ['dirname'])) { if (file_exists...
/**获得用户的真实IP 地址 *@param 多个用多行分开@return void */public static function get_client_ip(){static $realip = NULL; if (self::$client_ip !== NULL) { return self::$client_ip; } if (isset($_SERVER['HTTP_...
/** * 获取远程数据 * @param $url 地址 * @param $post_data 参数 * @param $method 方法 * @param $timeout 延时 */ function send($url = "", $post_data = '', $method = 'POST', $timeout = 20) { ...
/** * url 跳转 * @param $url 跳转的url * @param $type 跳转类型 301 404 * @param $tip 提示信息 */ function redirect($url = '/', $type = '', $tip = '') { if ($type == '301') { Header('HT...
//记录日志 function logs($channel, $contents) { $path = PATH_ROOT . '/data/log/'; if (!is_dir($path)) { if (!@mkdir($path, 0777, true)) { exit("无法创建目录{$path},请检查是否具...
/** * 根据ip获取城市 * @param type $ip * @return type */ function get_ip_city($ip=""){ if(!$ip) $ip = util::get_client_ip(); $rs = get_json_data(send("http://api.114la.com/ip/...
/** * 友好的时间显示 * @param int $sTime 待显示的时间 * @param string $type 类型. normal | mohu | full | ymd | other * @return string */ function friendlyDate($sTime,$type = 'normal') { if (!$sTime)...