您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何在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, $password, $email);
}
}
?>
具體要反回哪些函數,可以在上面代碼加上,可以打開uc_client/client.php看,可以加上你需要的函數,返回即可。
調用方法:
復制代碼 代碼如下:
$username = $this->input->post('username');
$password = $this->input->post('password');
$this->load->library('ucenter');
list($uid, $username, $password, $email) = $this->ucenter->login($username, $password);
if(!empty($uid)){
//生成同步登錄的代碼
$ucsynlogin = $this->ucenter->synlogin($uid);
}
關于如何在codeigniter中使用ucenter1.6實現雙向通信功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。