国产精品爱啪在线线免费观看_97视频精品_欧美精品一区二区在线播放_国产欧美久久一区二区三区

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 5345|回復: 0

[內置擴展] Discuz x3.5 核心文件 uc_client/client.php 函數注釋

[復制鏈接]
1#
發表于 2024-3-27 21:23:01 | 只看該作者 |倒序瀏覽 |閱讀模式

馬上注冊,結交更多好友,享用更多功能,讓你輕松玩轉社區

您需要 登錄 才可以下載或查看,沒有賬號?立即注冊

×
[PHP] 純文本查看 復制代碼
<?php

/*
	[UCenter] (C)2001-2099 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: client.php 1179 2014-11-03 07:11:25Z hypowang $
*/

if(!defined('UC_API')) {
	exit('Access denied');
}

error_reporting(0);

define('IN_UC', TRUE);
define('UC_ROOT', substr(__FILE__, 0, -10));
require UC_ROOT.'./release/release.php';
define('UC_DATADIR', UC_ROOT.'./data/');
define('UC_DATAURL', UC_API.'/data');
define('UC_API_FUNC', ((defined('UC_CONNECT') && UC_CONNECT == 'mysql') || UC_STANDALONE) ? 'uc_api_mysql' : 'uc_api_post');
$uc_controls = array();
/**
 * 添加反斜線,支持數組遞歸處理
 *
 * @param mixed $string 要處理的字符串或數組
 * @param int $force 強制處理標志,默認為0
 * @param bool $strip 先去除斜線再添加,默認為FALSE
 * @return mixed 處理后的字符串或數組
 */
function uc_addslashes($string, $force = 0, $strip = FALSE) {
    if(is_array($string)) {
        foreach($string as $key => $val) {
            $string[$key] = uc_addslashes($val, $force, $strip);
        }
    } else {
        $string = addslashes($strip ? stripslashes($string) : $string);
    }
    return $string;
}

/**
 * 代理函數,用于添加反斜線
 *
 * @param string $string 要處理的字符串
 * @param int $force 強制處理標志,默認為0
 * @return string 處理后的字符串
 */
if(!function_exists('daddslashes')) {
    function daddslashes($string, $force = 0) {
        return uc_addslashes($string, $force);
    }
}

/**
 * 轉義HTML特殊字符,支持數組遞歸處理
 *
 * @param string|array $string 要處理的字符串或數組
 * @param int|null $flags HTML轉義標志,默認為null
 * @return string|array 處理后的字符串或數組
 */
if(!function_exists('dhtmlspecialchars')) {
    function dhtmlspecialchars($string, $flags = null) {
        if(is_array($string)) {
            foreach($string as $key => $val) {
                $string[$key] = dhtmlspecialchars($val, $flags);
            }
        } else {
            if($flags === null) {
                $string = str_replace(array('&', '"', '<', '>'), array('&', '"', '<', '>'), $string);
                if(strpos($string, '&#') !== false) {
                    $string = preg_replace('/&((#(\d{3,5}|x[a-fA-F0-9]{4}));)/', '&\\1', $string);
                }
            } else {
                if(PHP_VERSION < '5.4.0') {
                    $string = htmlspecialchars($string, $flags);
                } else {
                    if(strtolower(CHARSET) == 'utf-8') {
                        $charset = 'UTF-8';
                    } else {
                        $charset = 'ISO-8859-1';
                    }
                    $string = htmlspecialchars($string, $flags, $charset);
                }
            }
        }
        return $string;
    }
}

/**
 * 代理函數,用于打開socket連接
 *
 * @param string $hostname 目標主機名
 * @param int $port 目標端口號,默認為80
 * @param int &$errno 用于存儲錯誤碼的引用
 * @param string &$errstr 用于存儲錯誤信息的引用
 * @param int $timeout 連接超時時間,默認為15秒
 * @return resource 返回socket連接資源,失敗返回false
 */
if(!function_exists('fsocketopen')) {
    function fsocketopen($hostname, $port = 80, &$errno = null, &$errstr = null, $timeout = 15) {
        $fp = '';
        if(function_exists('fsockopen')) {
            $fp = @fsockopen($hostname, $port, $errno, $errstr, $timeout);
        } elseif(function_exists('pfsockopen')) {
            $fp = @pfsockopen($hostname, $port, $errno, $errstr, $timeout);
        } elseif(function_exists('stream_socket_client')) {
            $fp = @stream_socket_client($hostname.':'.$port, $errno, $errstr, $timeout);
        }
        return $fp;
    }
}

/**
 * 發送API請求,通過POST方法
 *
 * @param string $module API模塊
 * @param string $action API操作
 * @param array $arg 請求參數
 * @return string 請求結果
 */
function uc_api_post($module, $action, $arg = array()) {
    $s = $sep = '';
    foreach($arg as $k => $v) {
        $k = urlencode($k);
        if(is_array($v)) {
            $s2 = $sep2 = '';
            foreach($v as $k2 => $v2) {
                $k2 = urlencode($k2);
                $s2 .= "$sep2{$k}[$k2]=".urlencode($v2);
                $sep2 = '&';
            }
            $s .= $sep.$s2;
        } else {
            $s .= "$sep$k=".urlencode($v);
        }
        $sep = '&';
    }
    $postdata = uc_api_requestdata($module, $action, $s);
    return uc_fopen2(UC_API.'/index.php', 500000, $postdata, '', TRUE, UC_IP, 20);
}
/**
 * 向UCenter發送請求的數據
 *
 * @param string $module 模塊名
 * @param string $action 動作名
 * @param string $arg 請求的參數
 * @param string $extra 額外的參數
 * @return string 構造的請求數據
 */
function uc_api_requestdata($module, $action, $arg='', $extra='') {
	$input = uc_api_input($arg, $module, $action);
	$post = "m=$module&a=$action&inajax=2&release=".UC_CLIENT_RELEASE."&input=$input&appid=".UC_APPID.$extra;
	return $post;
}

/**
 * 獲取向UCenter發送請求的URL
 *
 * @param string $module 模塊名
 * @param string $action 動作名
 * @param string $arg 請求的參數
 * @param string $extra 額外的參數
 * @return string 請求的URL
 */
function uc_api_url($module, $action, $arg='', $extra='') {
	$url = UC_API.'/index.php?'.uc_api_requestdata($module, $action, $arg, $extra);
	return $url;
}

/**
 * 對請求的數據進行編碼
 *
 * @param string $data 要編碼的數據
 * @param string $module 模塊名
 * @param string $action 動作名
 * @return string 編碼后的數據
 */
function uc_api_input($data, $module, $action) {
	$data = $data."&m=$module&a=$action&appid=".UC_APPID;
	$s = urlencode(uc_authcode($data.'&agent='.md5($_SERVER['HTTP_USER_AGENT'])."&time=".time(), 'ENCODE', UC_KEY));
	return $s;
}

/**
 * 執行與UCenter的通信操作
 *
 * @param string $model 模型名
 * @param string $action 動作名
 * @param array $args 請求參數
 * @return mixed 執行結果
 */
function uc_api_mysql($model, $action, $args=array()) {
	global $uc_controls;
	if(empty($uc_controls[$model])) {
		// 加載必要的類文件
		include_once UC_ROOT.'./lib/dbi.class.php';
		include_once UC_ROOT.'./model/base.php';
		include_once UC_ROOT."./control/$model.php";
		$modelname = $model.'control';
		$uc_controls[$model] = new $modelname();
	}
	if($action[0] != '_') {
		$args = uc_addslashes($args, 1, TRUE);
		$action = 'on'.$action;
		$uc_controls[$model]->input = $args;
		return $uc_controls[$model]->$action($args);
	} else {
		return '';
	}
}

/**
 * 序列化數據
 *
 * @param array $arr 要序列化的數組
 * @param int $htmlon 是否輸出html標簽
 * @return string 序列化后的數據
 */
function uc_serialize($arr, $htmlon = 0) {
	include_once UC_ROOT.'./lib/xml.class.php';
	return xml_serialize($arr, $htmlon);
}

/**
 * 反序列化數據
 *
 * @param string $s 序列化的數據
 * @return array 反序列化后的數據
 */
function uc_unserialize($s) {
	include_once UC_ROOT.'./lib/xml.class.php';
	return xml_unserialize($s);
}

/**
 * 對數據進行加密或解密
 *
 * @param string $string 要處理的字符串
 * @param string $operation 加密還是解密操作
 * @param string $key 加密密鑰
 * @param int $expiry 密碼的有效期
 * @return string 處理后的字符串
 */
function uc_authcode($string, $operation = 'DECODE', $key = '', $expiry = 0) {
	$ckey_length = 4;

	$key = md5($key ? $key : UC_KEY);
	$keya = md5(substr($key, 0, 16));
	$keyb = md5(substr($key, 16, 16));
	$keyc = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length): substr(md5(microtime()), -$ckey_length)) : '';

	$cryptkey = $keya.md5($keya.$keyc);
	$key_length = strlen($cryptkey);

	$string = $operation == 'DECODE' ? base64_decode(substr($string, $ckey_length)) : sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string.$keyb), 0, 16).$string;
	$string_length = strlen($string);

	$result = '';
	$box = range(0, 255);

	$rndkey = array();
	for($i = 0; $i <= 255; $i++) {
		$rndkey[$i] = ord($cryptkey[$i % $key_length]);
	}

	for($j = $i = 0; $i < 256; $i++) {
		$j = ($j + $box[$i] + $rndkey[$i]) % 256;
		$tmp = $box[$i];
		$box[$i] = $box[$j];
		$box[$j] = $tmp;
	}

	for($a = $j = $i = 0; $i < $string_length; $i++) {
		$a = ($a + 1) % 256;
		$j = ($j + $box[$a]) % 256;
		$tmp = $box[$a];
		$box[$a] = $box[$j];
		$box[$j] = $tmp;
		$result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
	}

	if($operation == 'DECODE') {
		if(((int)substr($result, 0, 10) == 0 || (int)substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) === substr(md5(substr($result, 26).$keyb), 0, 16)) {
			return substr($result, 26);
		} else {
			return '';
		}
	} else {
		return $keyc.str_replace('=', '', base64_encode($result));
	}
}

/**
 * 通過URL打開資源,支持GET和POST請求,可設置請求限制、發送cookie、通過指定IP強制路由等。
 *
 * @param string $url 請求的URL地址
 * @param int $limit 返回數據的最大限制字節數,0表示無限制
 * @param string $post 發送的POST數據,為空則執行GET請求
 * @param string $cookie 要發送的cookie信息
 * @param bool $bysocket 是否通過socket連接
 * @param string $ip 指定的IP地址,用于強制路由
 * @param int $timeout 連接和讀取的超時時間(秒)
 * @param bool $block 是否設置為阻塞模式
 * @param string $encodetype POST數據的編碼類型,'URLENCODE'或其它(用于多文件上傳)
 * @param bool $allowcurl 是否允許使用curl發起請求
 * @return string|void 返回請求到的數據,請求失敗則返回空
 */
function uc_fopen2($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout = 15, $block = TRUE, $encodetype  = 'URLENCODE', $allowcurl = TRUE) {
    // 防止循環請求
    $__times__ = isset($_GET['__times__']) ? intval($_GET['__times__']) + 1 : 1;
    if($__times__ > 2) {
        return '';
    }
    // 添加請求次數參數到URL中
    $url .= (strpos($url, '?') === FALSE ? '?' : '&')."__times__=$__times__";
    // 遞歸調用uc_fopen函數完成實際請求
    return uc_fopen($url, $limit, $post, $cookie, $bysocket, $ip, $timeout, $block, $encodetype, $allowcurl);
}

/**
 * 實際執行HTTP請求的函數
 *
 * @param string $url 請求的URL地址
 * @param int $limit 返回數據的最大限制字節數,0表示無限制
 * @param string $post 發送的POST數據,為空則執行GET請求
 * @param string $cookie 要發送的cookie信息
 * @param bool $bysocket 是否通過socket連接
 * @param string $ip 指定的IP地址,用于強制路由
 * @param int $timeout 連接和讀取的超時時間(秒)
 * @param bool $block 是否設置為阻塞模式
 * @param string $encodetype POST數據的編碼類型,'URLENCODE'或其它(用于多文件上傳)
 * @param bool $allowcurl 是否允許使用curl發起請求
 * @return string|void 返回請求到的數據,請求失敗則返回空
 */
function uc_fopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = FALSE, $ip = '', $timeout = 15, $block = TRUE, $encodetype  = 'URLENCODE', $allowcurl = TRUE) {
    $return = '';
    // 解析URL
    $matches = parse_url($url);
    $scheme = strtolower($matches['scheme']);
    $host = $matches['host'];
    $path = !empty($matches['path']) ? $matches['path'].(!empty($matches['query']) ? '?'.$matches['query'] : '') : '/';
    $port = !empty($matches['port']) ? $matches['port'] : ($scheme == 'https' ? 443 : 80);

    // 嘗試使用curl發送請求
    if(function_exists('curl_init') && function_exists('curl_exec') && $allowcurl) {
        $ch = curl_init();
        $ip && curl_setopt($ch, CURLOPT_HTTPHEADER, array("Host: ".$host));
        curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
        // 設置IP解析和請求URL
        if(!empty($ip) && filter_var($ip, FILTER_VALIDATE_IP) && !filter_var($host, FILTER_VALIDATE_IP) && version_compare(PHP_VERSION, '5.5.0', 'ge')) {
            curl_setopt($ch, CURLOPT_RESOLVE, array("$host:$port:$ip"));
            curl_setopt($ch, CURLOPT_URL, $scheme.'://'.$host.':'.$port.$path);
        } else {
            curl_setopt($ch, CURLOPT_URL, $scheme.'://'.($ip ? $ip : $host).':'.$port.$path);
        }
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        // 設置POST請求
        if($post) {
            curl_setopt($ch, CURLOPT_POST, 1);
            if($encodetype == 'URLENCODE') {
                curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
            } else {
                parse_str($post, $postarray);
                curl_setopt($ch, CURLOPT_POSTFIELDS, $postarray);
            }
        }
        // 設置cookie
        if($cookie) {
            curl_setopt($ch, CURLOPT_COOKIE, $cookie);
        }
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
        $data = curl_exec($ch);
        $status = curl_getinfo($ch);
        $errno = curl_errno($ch);
        curl_close($ch);
        // 處理請求錯誤
        if($errno || $status['http_code'] != 200) {
            return;
        } else {
            return !$limit ? $data : substr($data, 0, $limit);
        }
    }

    // 使用fopen和stream_socket_client發送請求
    if($post) {
        $out = "POST $path HTTP/1.0\r\n";
        $header = "Accept: */*\r\n";
        $header .= "Accept-Language: zh-cn\r\n";
        if($allowcurl) {
            $encodetype = 'URLENCODE';
        }
        $boundary = $encodetype == 'URLENCODE' ? '' : '; boundary='.trim(substr(trim($post), 2, strpos(trim($post), "\n") - 2));
        $header .= $encodetype == 'URLENCODE' ? "Content-Type: application/x-www-form-urlencoded\r\n" : "Content-Type: multipart/form-data$boundary\r\n";
        $header .= "User-Agent: {$_SERVER['HTTP_USER_AGENT']}\r\n";
        $header .= "Host: $host:$port\r\n";
        $header .= 'Content-Length: '.strlen($post)."\r\n";
        $header .= "Connection: Close\r\n";
        $header .= "Cache-Control: no-cache\r\n";
        $header .= "Cookie: $cookie\r\n\r\n";
        $out .= $header.$post;
    } else {
        $out = "GET $path HTTP/1.0\r\n";
        $header = "Accept: */*\r\n";
        $header .= "Accept-Language: zh-cn\r\n";
        $header .= "User-Agent: {$_SERVER['HTTP_USER_AGENT']}\r\n";
        $header .= "Host: $host:$port\r\n";
        $header .= "Connection: Close\r\n";
        $header .= "Cookie: $cookie\r\n\r\n";
        $out .= $header;
    }

    $fpflag = 0;
    $context = array();
    // 設置HTTPS請求的上下文選項
    if($scheme == 'https') {
        $context['ssl'] = array(
            'verify_peer' => false,
            'verify_peer_name' => false,
            'peer_name' => $host
        );
        if(version_compare(PHP_VERSION, '5.6.0', '<')) {
            $context['ssl']['SNI_enabled'] = true;
            $context['ssl']['SNI_server_name'] = $host;
        }
    }
    // 創建HTTP請求的上下文
    if(ini_get('allow_url_fopen')) {
        $context['http'] = array(
            'method' => $post ? 'POST' : 'GET',
            'header' => $header,
            'timeout' => $timeout
        );
        if($post) {
            $context['http']['content'] = $post;
        }
        $context = stream_context_create($context);
        $fp = @fopen($scheme.'://'.($ip ? $ip : $host).':'.$port.$path, 'b', false, $context);
        $fpflag = 1;
    } elseif(function_exists('stream_socket_client')) {
        $context = stream_context_create($context);
        $fp = @stream_socket_client(($scheme == 'https' ? 'ssl://' : '').($ip ? $ip : $host).':'.$port, $errno, $errstr, $timeout, STREAM_CLIENT_CONNECT, $context);
    } else {
        $fp = @fsocketopen(($scheme == 'https' ? 'ssl://' : '').($scheme == 'https' ? $host : ($ip ? $ip : $host)), $port, $errno, $errstr, $timeout);
    }

    if(!$fp) {
        return '';
    } else {
        stream_set_blocking($fp, $block);
        stream_set_timeout($fp, $timeout);
        if(!$fpflag) {
            @fwrite($fp, $out);
        }
        $status = stream_get_meta_data($fp);
        if(!$status['timed_out']) {
            // 讀取HTTP響應頭
            while (!feof($fp) && !$fpflag) {
                if(($header = @fgets($fp)) && ($header == "\r\n" ||  $header == "\n")) {
                    break;
                }
            }

            // 讀取響應體
            $stop = false;
            while(!feof($fp) && !$stop) {
                $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
                $return .= $data;
                if($limit) {
                    $limit -= strlen($data);
                    $stop = $limit <= 0;
                }
            }
        }
        @fclose($fp);
        return $return;
    }
}
/**
 * 獲取應用列表
 */
function uc_app_ls() {
    $return = call_user_func(UC_API_FUNC, 'app', 'ls', array());
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 添加Feed
 *
 * @param string $icon 圖標鏈接
 * @param int $uid 用戶ID
 * @param string $username 用戶名
 * @param string $title_template 標題模板
 * @param string $title_data 標題數據
 * @param string $body_template 正文模板
 * @param string $body_data 正文數據
 * @param string $body_general 簡化正文
 * @param string $target_ids 目標ID
 * @param array $images 圖片數組
 * @return mixed 添加結果
 */
function uc_feed_add($icon, $uid, $username, $title_template='', $title_data='', $body_template='', $body_data='', $body_general='', $target_ids='', $images = array()) {
    return call_user_func(UC_API_FUNC, 'feed', 'add',
        array(
            'icon'=>$icon,
            'appid'=>UC_APPID,
            'uid'=>$uid,
            'username'=>$username,
            'title_template'=>$title_template,
            'title_data'=>$title_data,
            'body_template'=>$body_template,
            'body_data'=>$body_data,
            'body_general'=>$body_general,
            'target_ids'=>$target_ids,
            'image_1'=>$images[0]['url'],
            'image_1_link'=>$images[0]['link'],
            'image_2'=>$images[1]['url'],
            'image_2_link'=>$images[1]['link'],
            'image_3'=>$images[2]['url'],
            'image_3_link'=>$images[2]['link'],
            'image_4'=>$images[3]['url'],
            'image_4_link'=>$images[3]['link']
        )
    );
}

/**
 * 獲取Feed列表
 *
 * @param int $limit 獲取數量
 * @param bool $delete 是否刪除已獲取的Feed
 * @return mixed 返回Feed列表
 */
function uc_feed_get($limit = 100, $delete = TRUE) {
    $return = call_user_func(UC_API_FUNC, 'feed', 'get', array('limit'=>$limit, 'delete'=>$delete));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 添加好友
 *
 * @param int $uid 用戶ID
 * @param int $friendid 好友ID
 * @param string $comment 添加好友時的備注信息
 * @return mixed 添加結果
 */
function uc_friend_add($uid, $friendid, $comment='') {
    return call_user_func(UC_API_FUNC, 'friend', 'add', array('uid'=>$uid, 'friendid'=>$friendid, 'comment'=>$comment));
}

/**
 * 刪除好友
 *
 * @param int $uid 用戶ID
 * @param array $friendids 好友ID數組
 * @return mixed 刪除結果
 */
function uc_friend_delete($uid, $friendids) {
    return call_user_func(UC_API_FUNC, 'friend', 'delete', array('uid'=>$uid, 'friendids'=>$friendids));
}

/**
 * 獲取好友總數
 *
 * @param int $uid 用戶ID
 * @param int $direction 0代表獲取好友數量,1代表獲取請求數量
 * @return mixed 好友總數
 */
function uc_friend_totalnum($uid, $direction = 0) {
    return call_user_func(UC_API_FUNC, 'friend', 'totalnum', array('uid'=>$uid, 'direction'=>$direction));
}

/**
 * 獲取好友列表
 *
 * @param int $uid 用戶ID
 * @param int $page 頁碼
 * @param int $pagesize 每頁數量
 * @param int $totalnum 總數
 * @param int $direction 0代表獲取好友,1代表獲取請求
 * @return mixed 返回好友列表
 */
function uc_friend_ls($uid, $page = 1, $pagesize = 10, $totalnum = 10, $direction = 0) {
    $return = call_user_func(UC_API_FUNC, 'friend', 'ls', array('uid'=>$uid, 'page'=>$page, 'pagesize'=>$pagesize, 'totalnum'=>$totalnum, 'direction'=>$direction));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 注冊用戶
 *
 * @param string $username 用戶名
 * @param string $password 密碼
 * @param string $email 郵箱
 * @param int $questionid 安全問題ID
 * @param string $answer 安全問題答案
 * @param string $regip 注冊IP
 * @return mixed 注冊結果
 */
function uc_user_register($username, $password, $email, $questionid = '', $answer = '', $regip = '') {
    return call_user_func(UC_API_FUNC, 'user', 'register', array('username'=>$username, 'password'=>$password, 'email'=>$email, 'questionid'=>$questionid, 'answer'=>$answer, 'regip' => $regip));
}

/**
 * 用戶登錄
 *
 * @param string $username 用戶名
 * @param string $password 密碼
 * @param int $isuid 是否使用UID登錄
 * @param int $checkques 是否檢查安全問題
 * @param string $questionid 安全問題ID
 * @param string $answer 安全問題答案
 * @param string $ip 登錄IP
 * @param int $nolog 是否不記錄登錄
 * @return mixed 登錄結果
 */
function uc_user_login($username, $password, $isuid = 0, $checkques = 0, $questionid = '', $answer = '', $ip = '', $nolog = 0) {
    $isuid = intval($isuid);
    $return = call_user_func(UC_API_FUNC, 'user', 'login', array('username'=>$username, 'password'=>$password, 'isuid'=>$isuid, 'checkques'=>$checkques, 'questionid'=>$questionid, 'answer'=>$answer, 'ip' => $ip, 'nolog' => $nolog));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 同步登錄
 *
 * @param int $uid 用戶ID
 * @return string 返回同步登錄的代碼
 */
function uc_user_synlogin($uid) {
    if(UC_STANDALONE) {
        return '';
    }
    $uid = intval($uid);
    if(@include UC_ROOT.'./data/cache/apps.php') {
        if(count($_CACHE['apps']) > 1) {
            $return = uc_api_post('user', 'synlogin', array('uid'=>$uid));
        } else {
            $return = '';
        }
    }
    return $return;
}

/**
 * 同步登出
 *
 * @return string 返回同步登出的代碼
 */
function uc_user_synlogout() {
    if(UC_STANDALONE) {
        return '';
    }
    if(@include UC_ROOT.'./data/cache/apps.php') {
        if(count($_CACHE['apps']) > 1) {
            $return = uc_api_post('user', 'synlogout', array());
        } else {
            $return = '';
        }
    }
    return $return;
}

/**
 * 修改用戶信息
 *
 * @param string $username 用戶名
 * @param string $oldpw 舊密碼
 * @param string $newpw 新密碼
 * @param string $email 郵箱
 * @param int $ignoreoldpw 是否忽略舊密碼
 * @param int $questionid 安全問題ID
 * @param string $answer 安全問題答案
 * @param string $secmobicc 驗證碼
 * @param string $secmobile 手機號碼
 * @return mixed 修改結果
 */
function uc_user_edit($username, $oldpw, $newpw, $email, $ignoreoldpw = 0, $questionid = '', $answer = '', $secmobicc = '', $secmobile = '') {
    return call_user_func(UC_API_FUNC, 'user', 'edit', array('username'=>$username, 'oldpw'=>$oldpw, 'newpw'=>$newpw, 'email'=>$email, 'ignoreoldpw'=>$ignoreoldpw, 'questionid'=>$questionid, 'answer'=>$answer, 'secmobicc'=>$secmobicc, 'secmobile'=>$secmobile));
}

/**
 * 刪除用戶
 *
 * @param int $uid 用戶ID
 * @return mixed 刪除結果
 */
function uc_user_delete($uid) {
    return call_user_func(UC_API_FUNC, 'user', 'delete', array('uid'=>$uid, 'action'=>'delete'));
}

/**
 * 刪除用戶頭像
 * @param $uid 用戶ID
 */
function uc_user_deleteavatar($uid) {
    if(UC_STANDALONE) {
        @include_once UC_ROOT.'./extend_client.php';
        uc_note_handler::loadavatarpath();
        uc_api_mysql('user', 'deleteavatar', array('uid'=>$uid));
    } else {
        uc_api_post('user', 'deleteavatar', array('uid'=>$uid));
    }
}

/**
 * 檢查用戶名是否可用
 * @param $username 待檢查的用戶名
 * @return 檢查結果
 */
function uc_user_checkname($username) {
    return call_user_func(UC_API_FUNC, 'user', 'check_username', array('username'=>$username));
}

/**
 * 檢查郵箱是否可用
 * @param $email 待檢查的郵箱地址
 * @return 檢查結果
 */
function uc_user_checkemail($email) {
    return call_user_func(UC_API_FUNC, 'user', 'check_email', array('email'=>$email));
}

/**
 * 檢查輔助手機號是否可用
 * @param $secmobicc 手機運營商編碼
 * @param $secmobile 輔助手機號
 * @return 檢查結果
 */
function uc_user_checksecmobile($secmobicc, $secmobile) {
    return call_user_func(UC_API_FUNC, 'user', 'check_secmobile', array('secmobicc'=>$secmobicc, 'secmobile'=>$secmobile));
}

/**
 * 添加受保護的用戶名
 * @param $username 待添加的用戶名
 * @param $admin 添加的管理員(可選)
 * @return 添加結果
 */
function uc_user_addprotected($username, $admin='') {
    return call_user_func(UC_API_FUNC, 'user', 'addprotected', array('username'=>$username, 'admin'=>$admin));
}

/**
 * 刪除受保護的用戶名
 * @param $username 待刪除的用戶名
 * @return 刪除結果
 */
function uc_user_deleteprotected($username) {
    return call_user_func(UC_API_FUNC, 'user', 'deleteprotected', array('username'=>$username));
}

/**
 * 獲取受保護的用戶名列表
 * @return 受保護的用戶名列表
 */
function uc_user_getprotected() {
    $return = call_user_func(UC_API_FUNC, 'user', 'getprotected', array('1'=>1));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 獲取用戶信息
 * @param $username 用戶名
 * @param $isuid 是否為用戶ID (0: 不是, 非0: 是)
 * @return 用戶信息
 */
function uc_get_user($username, $isuid=0) {
    $return = call_user_func(UC_API_FUNC, 'user', 'get_user', array('username'=>$username, 'isuid'=>$isuid));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 更改用戶名
 * @param $uid 用戶ID
 * @param $newusername 新用戶名
 * @return 更改結果
 */
function uc_user_chgusername($uid, $newusername) {
    return call_user_func(UC_API_FUNC, 'user', 'chgusername', array('uid'=>$uid, 'newusername'=>$newusername));
}

/**
 * 用戶合并
 * @param $oldusername 老用戶名
 * @param $newusername 新用戶名
 * @param $uid 用戶ID
 * @param $password 用戶密碼
 * @param $email 用戶郵箱
 * @return 合并結果
 */
function uc_user_merge($oldusername, $newusername, $uid, $password, $email) {
    return call_user_func(UC_API_FUNC, 'user', 'merge', array('oldusername'=>$oldusername, 'newusername'=>$newusername, 'uid'=>$uid, 'password'=>$password, 'email'=>$email));
}

/**
 * 用戶合并后刪除老用戶
 * @param $username 要刪除的用戶名
 * @return 刪除結果
 */
function uc_user_merge_remove($username) {
    return call_user_func(UC_API_FUNC, 'user', 'merge_remove', array('username'=>$username));
}

/**
 * 獲取用戶積分
 * @param $appid 應用ID
 * @param $uid 用戶ID
 * @param $credit 積分名稱
 * @return 積分值
 */
function uc_user_getcredit($appid, $uid, $credit) {
    return uc_api_post('user', 'getcredit', array('appid'=>$appid, 'uid'=>$uid, 'credit'=>$credit));
}

/**
 * 檢查用戶登錄狀態
 * @param $username 用戶名
 * @param $ip 用戶IP
 * @return 登錄檢查結果
 */
function uc_user_logincheck($username, $ip) {
    return call_user_func(UC_API_FUNC, 'user', 'logincheck', array('username' => $username, 'ip' => $ip));
}

/**
 * 設置私信位置
 * @param $uid 用戶ID
 * @param $newpm 是否只讀 (0: 未讀, 1: 已讀)
 */
function uc_pm_location($uid, $newpm = 0) {
    $apiurl = uc_api_url('pm_client', 'ls', "uid=$uid&frontend=1", ($newpm ? '&folder=newbox' : ''));
    @header("Expires: 0");
    @header("Cache-Control: private, post-check=0, pre-check=0, max-age=0", FALSE);
    @header("Pragma: no-cache");
    @header("location: $apiurl");
}
/**
 * 檢查用戶是否有新私信
 *
 * @param int $uid 用戶ID
 * @param int $more 是否返回更詳細的信息,1為是,其他為否
 * @return mixed 返回新私信信息,格式取決于UC連接方式和$more參數
 */
function uc_pm_checknew($uid, $more = 0) {
    $return = call_user_func(UC_API_FUNC, 'pm', 'check_newpm', array('uid'=>$uid, 'more'=>$more));
    return (!$more || UC_CONNECT == 'mysql') ? $return : uc_unserialize($return);
}

/**
 * 發送私信
 *
 * @param int $fromuid 發送者ID
 * @param string|int $msgto 接收者ID或用戶名
 * @param string $subject 私信主題
 * @param string $message 私信內容
 * @param int $instantly 是否立即發送,1為立即發送,其他為不立即發送
 * @param int $replypmid 回復的私信ID,0為新私信
 * @param int $isusername 是否使用用戶名發送,1為是,其他為否
 * @param int $type 私信類型,0為普通私信,1為系統私信
 * @return mixed 發送結果,具體格式取決于發送方式
 */
function uc_pm_send($fromuid, $msgto, $subject, $message, $instantly = 1, $replypmid = 0, $isusername = 0, $type = 0) {
    if($instantly) {
        $replypmid = @is_numeric($replypmid) ? $replypmid : 0;
        return call_user_func(UC_API_FUNC, 'pm', 'sendpm', array('fromuid'=>$fromuid, 'msgto'=>$msgto, 'subject'=>$subject, 'message'=>$message, 'replypmid'=>$replypmid, 'isusername'=>$isusername, 'type' => $type));
    } else {
        // 通過API URL方式發送
        $fromuid = intval($fromuid);
        $subject = rawurlencode($subject);
        $msgto = rawurlencode($msgto);
        $message = rawurlencode($message);
        $replypmid = @is_numeric($replypmid) ? $replypmid : 0;
        $replyadd = $replypmid ? "&pmid=$replypmid&do=reply" : '';
        $apiurl = uc_api_url('pm_client', 'send', "uid=$fromuid", "&msgto=$msgto&subject=$subject&message=$message$replyadd");
        @header("Expires: 0");
        @header("Cache-Control: private, post-check=0, pre-check=0, max-age=0", FALSE);
        @header("Pragma: no-cache");
        @header("location: ".$apiurl);
    }
}

/**
 * 刪除私信
 *
 * @param int $uid 用戶ID
 * @param string $folder 私信文件夾,如inbox或outbox
 * @param array $pmids 要刪除的私信ID數組
 * @return mixed 刪除結果
 */
function uc_pm_delete($uid, $folder, $pmids) {
    return call_user_func(UC_API_FUNC, 'pm', 'delete', array('uid'=>$uid, 'pmids'=>$pmids));
}

/**
 * 刪除用戶私信
 *
 * @param int $uid 用戶ID
 * @param array $touids 要刪除私信的接收者ID數組
 * @return mixed 刪除結果
 */
function uc_pm_deleteuser($uid, $touids) {
    return call_user_func(UC_API_FUNC, 'pm', 'deleteuser', array('uid'=>$uid, 'touids'=>$touids));
}

/**
 * 刪除聊天記錄
 *
 * @param int $uid 用戶ID
 * @param array $plids 要刪除的聊天記錄ID數組
 * @param int $type 私信類型,0為普通私信,1為系統私信
 * @return mixed 刪除結果
 */
function uc_pm_deletechat($uid, $plids, $type = 0) {
    return call_user_func(UC_API_FUNC, 'pm', 'deletechat', array('uid'=>$uid, 'plids'=>$plids, 'type'=>$type));
}

/**
 * 設置私信閱讀狀態
 *
 * @param int $uid 用戶ID
 * @param array $uids 接收者ID數組
 * @param array $plids 私信ID數組
 * @param int $status 閱讀狀態,0為未讀,1為已讀
 * @return mixed 設置結果
 */
function uc_pm_readstatus($uid, $uids, $plids = array(), $status = 0) {
    return call_user_func(UC_API_FUNC, 'pm', 'readstatus', array('uid'=>$uid, 'uids'=>$uids, 'plids'=>$plids, 'status'=>$status));
}

/**
 * 獲取私信列表
 *
 * @param int $uid 用戶ID
 * @param int $page 頁碼
 * @param int $pagesize 每頁數量
 * @param string $folder 文件夾名稱,如inbox或outbox
 * @param string $filter 過濾條件,如newpm
 * @param int $msglen 截取私信內容長度,0為不截取
 * @return mixed 私信列表
 */
function uc_pm_list($uid, $page = 1, $pagesize = 10, $folder = 'inbox', $filter = 'newpm', $msglen = 0) {
    $uid = intval($uid);
    $page = intval($page);
    $pagesize = intval($pagesize);
    $return = call_user_func(UC_API_FUNC, 'pm', 'ls', array('uid'=>$uid, 'page'=>$page, 'pagesize'=>$pagesize, 'filter'=>$filter, 'msglen'=>$msglen));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 忽略某人發來的私信
 *
 * @param int $uid 用戶ID
 * @return mixed 操作結果
 */
function uc_pm_ignore($uid) {
    $uid = intval($uid);
    return call_user_func(UC_API_FUNC, 'pm', 'ignore', array('uid'=>$uid));
}

/**
 * 查看私信
 *
 * @param int $uid 用戶ID
 * @param int $pmid 私信ID,0為獲取最新私信
 * @param int $touid 對方用戶ID
 * @param int $daterange 查看范圍,1為今天,2為三天內,3為一周內,0為不限制
 * @param int $page 頁碼
 * @param int $pagesize 每頁數量
 * @param int $type 私信類型,0為普通私信,1為系統私信
 * @param int $isplid 是否為對話模式,1為是
 * @return mixed 私信內容
 */
function uc_pm_view($uid, $pmid = 0, $touid = 0, $daterange = 1, $page = 0, $pagesize = 10, $type = 0, $isplid = 0) {
    $uid = intval($uid);
    $touid = intval($touid);
    $page = intval($page);
    $pagesize = intval($pagesize);
    $pmid = @is_numeric($pmid) ? $pmid : 0;
    $return = call_user_func(UC_API_FUNC, 'pm', 'view', array('uid'=>$uid, 'pmid'=>$pmid, 'touid'=>$touid, 'daterange'=>$daterange, 'page' => $page, 'pagesize' => $pagesize, 'type'=>$type, 'isplid'=>$isplid));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 獲取某用戶對另一用戶的私信查看次數
 *
 * @param int $uid 用戶ID
 * @param int $touid 對方用戶ID
 * @param int $isplid 是否為對話模式,1為是
 * @return mixed 查看次數
 */
function uc_pm_view_num($uid, $touid, $isplid) {
    $uid = intval($uid);
    $touid = intval($touid);
    $isplid = intval($isplid);
    return call_user_func(UC_API_FUNC, 'pm', 'viewnum', array('uid' => $uid, 'touid' => $touid, 'isplid' => $isplid));
}

/**
 * 查看私信節點
 *
 * @param int $uid 用戶ID
 * @param int $type 私信類型,0為普通私信,1為系統私信
 * @param int $pmid 私信ID
 * @return mixed 查看結果
 */
function uc_pm_viewnode($uid, $type, $pmid) {
    $uid = intval($uid);
    $type = intval($type);
    $pmid = @is_numeric($pmid) ? $pmid : 0;
    $return = call_user_func(UC_API_FUNC, 'pm', 'viewnode', array('uid'=>$uid, 'type'=>$type, 'pmid'=>$pmid));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 獲取聊天私信成員列表
 *
 * @param int $uid 用戶ID
 * @param int $plid 聊天私信ID
 * @return mixed 成員列表
 */
function uc_pm_chatpmmemberlist($uid, $plid = 0) {
    $uid = intval($uid);
    $plid = intval($plid);
    $return = call_user_func(UC_API_FUNC, 'pm', 'chatpmmemberlist', array('uid'=>$uid, 'plid'=>$plid));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}
/**
 * 將用戶從聊天中踢出
 * @param $plid 聊天室或對話的ID
 * @param $uid 當前操作用戶的ID
 * @param $touid 被踢出用戶的ID
 * @return 調用UC API后的返回結果
 */
function uc_pm_kickchatpm($plid, $uid, $touid) {
	$uid = intval($uid);
	$plid = intval($plid);
	$touid = intval($touid);
	return call_user_func(UC_API_FUNC, 'pm', 'kickchatpm', array('uid'=>$uid, 'plid'=>$plid, 'touid'=>$touid));
}

/**
 * 添加聊天信息
 * @param $plid 聊天室或對話的ID
 * @param $uid 當前操作用戶的ID
 * @param $touid 發送消息給的目標用戶ID
 * @return 調用UC API后的返回結果
 */
function uc_pm_appendchatpm($plid, $uid, $touid) {
	$uid = intval($uid);
	$plid = intval($plid);
	$touid = intval($touid);
	return call_user_func(UC_API_FUNC, 'pm', 'appendchatpm', array('uid'=>$uid, 'plid'=>$plid, 'touid'=>$touid));
}

/**
 * 獲取用戶的黑名單列表
 * @param $uid 當前操作用戶的ID
 * @return 調用UC API后的返回結果
 */
function uc_pm_blackls_get($uid) {
	$uid = intval($uid);
	return call_user_func(UC_API_FUNC, 'pm', 'blackls_get', array('uid'=>$uid));
}

/**
 * 設置用戶的黑名單列表
 * @param $uid 當前操作用戶的ID
 * @param $blackls 黑名單用戶數組
 * @return 調用UC API后的返回結果
 */
function uc_pm_blackls_set($uid, $blackls) {
	$uid = intval($uid);
	return call_user_func(UC_API_FUNC, 'pm', 'blackls_set', array('uid'=>$uid, 'blackls'=>$blackls));
}

/**
 * 添加用戶到黑名單
 * @param $uid 當前操作用戶的ID
 * @param $username 要添加到黑名單的用戶名
 * @return 調用UC API后的返回結果
 */
function uc_pm_blackls_add($uid, $username) {
	$uid = intval($uid);
	return call_user_func(UC_API_FUNC, 'pm', 'blackls_add', array('uid'=>$uid, 'username'=>$username));
}

/**
 * 從黑名單中刪除用戶
 * @param $uid 當前操作用戶的ID
 * @param $username 要從黑名單中刪除的用戶名
 * @return 調用UC API后的返回結果
 */
function uc_pm_blackls_delete($uid, $username) {
	$uid = intval($uid);
	return call_user_func(UC_API_FUNC, 'pm', 'blackls_delete', array('uid'=>$uid, 'username'=>$username));
}

/**
 * 獲取域名列表
 * @return 調用UC API后的返回結果
 */
function uc_domain_ls() {
	$return = call_user_func(UC_API_FUNC, 'domain', 'ls', array('1'=>1));
	return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}
/**
 * 信用積分兌換請求
 *
 * @param int $uid 用戶ID
 * @param int $from 起始積分類型
 * @param int $to 結束積分類型
 * @param int $toappid 目標應用ID
 * @param int $amount 兌換數量
 * @return mixed 兌換結果,通常是API返回的數據
 */
function uc_credit_exchange_request($uid, $from, $to, $toappid, $amount) {
    $uid = intval($uid);
    $from = intval($from);
    $toappid = intval($toappid);
    $to = intval($to);
    $amount = intval($amount);
    return uc_api_post('credit', 'request', array('uid'=>$uid, 'from'=>$from, 'to'=>$to, 'toappid'=>$toappid, 'amount'=>$amount));
}

/**
 * 獲取指定標簽信息
 *
 * @param string $tagname 標簽名
 * @param int $nums 需要返回的標簽數量,默認為0,表示全部
 * @return mixed 返回標簽信息,格式取決于UC連接方式
 */
function uc_tag_get($tagname, $nums = 0) {
    $return = call_user_func(UC_API_FUNC, 'tag', 'gettag', array('tagname'=>$tagname, 'nums'=>$nums));
    return UC_CONNECT == 'mysql' ? $return : uc_unserialize($return);
}

/**
 * 獲取用戶頭像
 *
 * @param int $uid 用戶ID
 * @param string $type 頭像類型,默認為'virtual'
 * @param int $returnhtml 是否返回HTML代碼,默認為1(返回HTML代碼)
 * @return mixed 根據$returnhtml參數返回HTML代碼或頭像信息數組
 */
function uc_avatar($uid, $type = 'virtual', $returnhtml = 1) {
    $uid = intval($uid);
    $uc_input = uc_api_input("uid=$uid&frontend=1", "user", "rectavatar");
    $avatarpath = UC_STANDALONE ? UC_AVTAPI : UC_API;
    $uc_avatarflash = UC_API.'/images/camera.swf?inajax=1&appid='.UC_APPID.'&input='.$uc_input.'&agent='.md5($_SERVER['HTTP_USER_AGENT']).'&ucapi='.urlencode(UC_API).'&avatartype='.$type.'&uploadSize=2048';
    $uc_avatarhtml5 = UC_API.'/index.php?m=user&a=camera&width=450&height=253&appid='.UC_APPID.'&input='.$uc_input.'&agent='.md5($_SERVER['HTTP_USER_AGENT']).'&ucapi='.urlencode(UC_API).'&avatartype='.$type.'&uploadSize=2048';
    $uc_avatarstl = $avatarpath.'/index.php?m=user&inajax=1&a=rectavatar&appid='.UC_APPID.'&input='.$uc_input.'&agent='.md5($_SERVER['HTTP_USER_AGENT']).'&avatartype='.$type.'&base64=yes';
    if($returnhtml) {
        $flash = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="450" height="253" id="mycamera" align="middle"><param name="allowScriptAccess" value="always" /><param name="scale" value="exactfit" /><param name="wmode" value="transparent" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="movie" value="'.$uc_avatarflash.'" /><param name="menu" value="false" /><embed src="'.$uc_avatarflash.'" quality="high" bgcolor="#ffffff" width="450" height="253" name="mycamera" align="middle" allowScriptAccess="always" allowFullScreen="false" scale="exactfit"  wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
        $html5 = '<iframe src="' . $uc_avatarhtml5 . '" width="450" marginwidth="0" height="253" marginheight="0" scrolling="no" frameborder="0" id="mycamera" name="mycamera" align="middle"></iframe>';
        return '<script type="text/javascript">document.write(document.createElement("Canvas").getContext ? \'' . $html5 . '\' : \'' . $flash . '\');</script>';
    } else {
        return array(
            'width', '450',
            'height', '253',
            'scale', 'exactfit',
            'src', $uc_avatarflash,
            'html5_src', $uc_avatarhtml5,
            'stl_src', $uc_avatarstl,
            'id', 'mycamera',
            'name', 'mycamera',
            'quality','high',
            'bgcolor','#ffffff',
            'menu', 'false',
            'swLiveConnect', 'true',
            'allowScriptAccess', 'always'
        );
    }
}

/**
 * 處理用戶頭像切邊
 *
 * @param int $uid 用戶ID
 * @return mixed 處理結果,通常是API返回的數據
 */
function uc_rectavatar($uid) {
    return uc_api_mysql('user', 'rectavatar', array('uid' => $uid));
}

/**
 * 郵件隊列添加
 *
 * @param array $uids 用戶ID數組
 * @param array $emails 郵箱地址數組
 * @param string $subject 郵件主題
 * @param string $message 郵件正文
 * @param string $frommail 發件郵箱,默認為空
 * @param string $charset 編碼,默認為'gbk'
 * @param bool $htmlon 是否為HTML郵件,默認為FALSE
 * @param int $level 郵件級別,默認為1
 * @return mixed 添加結果,通常是API返回的數據
 */
function uc_mail_queue($uids, $emails, $subject, $message, $frommail = '', $charset = 'gbk', $htmlon = FALSE, $level = 1) {
    return call_user_func(UC_API_FUNC, 'mail', 'add', array('uids' => $uids, 'emails' => $emails, 'subject' => $subject, 'message' => $message, 'frommail' => $frommail, 'charset' => $charset, 'htmlon' => $htmlon, 'level' => $level));
}

/**
 * 檢查用戶頭像是否存在
 *
 * @param int $uid 用戶ID
 * @param string $size 頭像尺寸,默認為'middle'
 * @param string $type 頭像類型,默認為'virtual'
 * @return int 檢查結果,1表示頭像存在,0表示不存在
 */
function uc_check_avatar($uid, $size = 'middle', $type = 'virtual') {
    if(UC_STANDALONE && @include UC_ROOT.'./extend_client.php') {
        $uc_chk = new uc_note_handler();
        $res = $uc_chk->checkavatar(array('uid' => $uid, 'size' => $size, 'type' => $type), array());
    } else {
        $url = UC_API."/avatar.php?uid=$uid&size=$size&type=$type&check_file_exists=1";
        $res = uc_fopen2($url, 500000, '', '', TRUE, UC_IP, 20);
    }
    if($res == 1) {
        return 1;
    } else {
        return 0;
    }
}

/**
 * 檢查UCenter版本信息
 *
 * @return mixed 版本檢查結果,通常是API返回的數據
 */
function uc_check_version() {
    $return = uc_api_post('version', 'check', array());
    $data = uc_unserialize($return);
    return is_array($data) ? $data : $return;
}

?>

帖子永久地址: 

新秀網絡驗證系統 - 論壇版權1、本主題所有言論和圖片純屬會員個人意見,與本論壇立場無關
2、本站所有主題由該帖子作者發表,該帖子作者與新秀網絡驗證系統享有帖子相關版權
3、其他單位或個人使用、轉載或引用本文時必須同時征得該帖子作者和新秀網絡驗證系統的同意
4、帖子作者須承擔一切因本文發表而直接或間接導致的民事或刑事法律責任
5、本帖部分內容轉載自其它媒體,但并不代表本站贊同其觀點和對其真實性負責
6、如本帖侵犯到任何版權問題,請立即告知本站,本站將及時予與刪除并致以最深的歉意
7、新秀網絡驗證系統管理員和版主有權不事先通知發貼者而刪除本文

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

QQ|Archiver|手機版|新秀網絡驗證系統API[軟著登字第13061951號] ( 豫ICP備2021033257號-1 )

GMT+8, 2025-7-1 14:11 , Processed in 0.216886 second(s), 40 queries , Redis On.

Powered by Discuz! X3.5 Licensed

© 2001-2025 Discuz! Team.

快速回復 返回頂部 返回列表