摘要:
[root@localhost ~]# php -vPHP 5.2.16 (cli) (built: Dec 17 2010 14:09:03) Copyright (c) 1997-2010 The PHP GroupZend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies[root@localhost ~]# apachectl -vServer version: Apache/2.2.16 (Unix)Server built: Aug 27 2010 13:40:02[root@localhost ~]# mysql.. 阅读全文
摘要:
——controller public $defaultAction = "income"; public function actionIncome(){ $model = new StatsSpace; $model->user_id = Yii::app()->user->id; //日期 $idate = isset($_POST['Income']['idate']) ? $_POST['Income']['idate'] : ""; if(!$idate){ $ 阅读全文
摘要:
以下关于文件的阐述以及代码的样例,均以 PHP 程序为例。UCenter 的目录结构UCenter 分为服务端和客户端 2 个部分。服务端目录为“upload/”,客户端目录为“client/”。无论你的网站有多少个应用程序,服务端在一个网站中只需安装一次。而客户端则必须存在于每一个应用的根目录中。具体目录结构请见下表:服务端:upload/UCenter 安装时上传此文件夹中的文件到您的服务器,在浏览器输入“http://网站地址/install/”安装 UCenter。安装后删除 install/ 目录。control/应用程序 control 部分目录 data/缓存数据目录,此目录及其 阅读全文
摘要:
API接口以下关于文件的阐述以及代码的样例,均以 PHP 程序为例。UCenter 的 API 接口文件必须存放于应用程序根目录的“api/”目录中,且文件名可以自定义,默认为 uc.php,即“api/uc.php”。文件结构可分为 4 部分,包含 12 个接口项目。第 1 部分为常量定义、第 2 部分为通知方式判断以及初始化输入参数、第 3 部分为接口类代码段、第 4 部分为函数定义。1、常量定义define('UC_CLIENT_VERSION', '1.5.0'); //note UCenter 版本标识define('UC_CLIENT_REL 阅读全文
摘要:
标签接口函数获取标签数据array uc_tag_get(string tagname [, array nums])函数参数参数含义string tagname标签名称array nums指定每个应用返回多少条数据,数组格式如下:KEYVALUE 应用 ID返回数据条数 返回值值含义 array标签数据,其中单条标签数组结构请参看附表 本接... 阅读全文
摘要:
应用接口函数获取应用列表array uc_app_ls()返回值值含义array应用列表数据,其中单条应用数组结构请参看附表本接口获取 UCenter 中所有应用的列表数据。附表:单条应用数组结构string ['appid']应用 ID string ['type']应用类型 string ['name']应用名称 string ['url']接口 URL string ['tagtemplates']标签单条显示模板 string ['viewprourl']应用单看个人资料 URL 阅读全文
摘要:
短消息接口函数进入短消息中心uc_pm_location(integer uid , bool newpm)函数参数参数含义integer uid用户 IDbool newpm是否直接查看未读短消息 1:是 0:(默认值) 否 本接口函数运行后会发送一个 header 的 location 请求,使当前页面跳转到短消息中心。所以请不要在这个函数运行前后有任何的输出性的代码。如果 newpm 为 1 则进入短消息中心后,会默认打开新件箱。进入短消息中心示例 (PHP)检查新的短消息bool/array uc... 阅读全文
摘要:
添加邮件到队列mixed uc_mail_queue(stringuids, stringemails, stringsubject, stringmessage[, mailfrommail, stringcharset, booleanhtmlon, integerlevel]);函数参数参数含义string uids用户 ID 多个用逗号(,)隔开string emails目标email,多个用逗号(,)隔开string subject邮件标题string message邮件内容mail frommail发信人,可选参数,默认为空,uc后台设置的邮件来源作为发信人地址string cha 阅读全文