codeigniter集成ucenter1.6双向通信的解决办法

前端之家收集整理的这篇文章主要介绍了codeigniter集成ucenter1.6双向通信的解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

用codeigniter开发一个子网站,之后想和原来的论坛进行同步,包括同步登陆和双向通信

先装好ucenter,然后新建一个other的应用,把生成代码拷出来,新建一个config.ini.PHP到你的uc_client,ucenter会产生一个yourdomain.com/api/uc.PHP的请求,/api/uc.PHP不需要填写,要保证ucenter请求正确位置,才能做到双向通信

把uc_client复制到你的网站,目录可以自己定,就根目录吧。如果你把api目录放到uc_client目录低下,那么应用的请求路径yourdomain.com/uc_client,如果api也放在根目录请求地址uc_client可以去掉

建一个libraries/Ucenter.PHP内容

代码如下:
PHP
class Ucenter {
function __construct() {
require_once FCPATH . './api/uc_client/config.inc.PHP';
require_once FCPATH . './api/uc_client/client.PHP';
}

function getUserId() {
return $this->_uid;
}

function getUserName() {
return ucwords(strtolower($this->_username));
}

function login($username,$password) {
return uc_user_login($username,$password);
}
function synlogin($uid) {
return uc_user_synlogin($uid);
}

function login_out() {
return uc_user_synlogout();
}

function regediter($username,$password,$email) {
return uc_user_register($username,$email);
}
}
?>

具体要反回哪些函数,可以在上面代码加上,可以打开uc_client/client.PHP看,可以加上你需要的函数,返回即可。

调用方法

代码如下:
input->post('username');
$password = $this->input->post('password');
$this->load->library('ucenter');
list($uid,$username,$email) = $this->ucenter->login($username,$password);
if(!empty($uid)){
//生成同步登录代码
$ucsynlogin = $this->ucenter->synlogin($uid);
}

原文链接:https://www.f2er.com/php/24503.html

猜你在找的PHP相关文章