+0°
1、用户登录
app fontend.base.php 中login方法
$user_id = $ms->user->auth($user_name, $password);
$this->_do_login($user_id);
/* 同步登陆外部系统 */
$synlogin = $ms->user->synlogin($user_id);
function _do_log...
阅读全文
+0°
+0°
2015年02月28日
⁄ ecshop+ectouch
⁄ 共 943字
在include/lib_goods.php文件下面新增:
function getads($cat,$num)
{
$time = gmtime();
$sql = "SELECT * FROM " . $GLOBALS['ecs']->table('ad') . " where position_id=".$cat." and start_time <= '" . $time . "' AND end_time >= '" . $time . "' ORDER BY ad_id desc limit ".$num;
$res = $GLOBALS['db']->getAll($sql);
$arr = array();
...
阅读全文
+0°
微信支付支付成功后,返回到mobile/wx_native_callback.php
之前代码
define('IN_ECS', true);
require(dirname(__FILE__) . '/include/init.php');
require(ROOT_PATH . 'include/lib_payment.php');
require_once(ROOT_PATH .'include/modules/payment/wx_new_jspay.php');
$payment = new wx_new_qrcode();
$payment->respond();
exit;
修改后:
<?php
define('IN_ECTOUCH', true);
define('IN_...
阅读全文
+0°
易盾解密
==> call module_decode_hcache.php
<?php
ini_set("display_error","on");
error_reporting(9);
$root =$_SERVER['DOCUMENT_ROOT'];
$root='/';
$dir ="/sr/";
$output_dir = "/de/";
$temp_dir ='/hc/';
decode_dir($root.$dir);
function decode_dir($path)
{
global $temp_dir,$output_dir,$dir,$root;
$outdir = str_replace($root.$dir,$root.$output_dir,$path);
mkdir($outd...
阅读全文
+0°
2014年04月23日
⁄ php
⁄ 共 589字
会员级别的配置文件为wx/fun/additions.php
//会员级别翻译
function translate_level($level_id=null,$justtext = false){
$l_arr = array('1'=>'免费用户','2'=>'普通版会员','3'=>'标准版会员','4'=>'钻石版会员','5'=>'行业版会员');
if($level_id===null){
return $justtext ? '' : $l_arr;
}else{
return $l_arr[$level_id];
}
}
免费会员就是试用期为3天 超过三天自动降为免费用户。con...
阅读全文
+0°
+0°
2014年04月23日
⁄ php
⁄ 共 818字
首先yyuc框架是支持发送email的
在yyuc/yyuc.php 上加上如下代码:
require_once(YYUC_LIB.'plugin/SendMail.php');
$sendMail = new SendMail();
二在wx conf.php 下配置下发送函数
public static $email = array(
'reg'=>array('protocol'=>'smtp','smtp_host'=>'smtp.qq.com','smtp_user'=>'','smtp_pass'=>'','from'=>array('','注册信息')),
'findpwd'=>array('protocol'=>...
阅读全文
+0°
2014年01月19日
⁄ thinkphp
⁄ 共 2354字
一、find方法 获取单条数据
$Data=M('user');
//$this->data=$Data->select();
$arr=$Data->find('8');
getField 获取一个具体的字段名
$arr=$Data->where('id=8')->getField('username');
thinkphp 的连贯操作
二、ThinkPHP 3 读取数据 (重点)
对数据的读取 Read
$m=new Model('User');
$m=M('User');
select
$m->select();//获取所有数据,以数组形式...
阅读全文
+0°
2014年01月15日
⁄ thinkphp
⁄ 共 817字
<?php
//1 确定应用名称
define('APP_NAME','HOME');
// 确定应用路径
define('APP_PATH','./Home/');
//引入核心文件
require './ThinkPHP/thinkPHP.php';
一、访问模式
1、 pathinfo
传递参数 键/值
localhost/thinkphp/index.php/Index/show/name/Tony/age/18
如何更改?
localhost/thinkphp/index.php/Index-show-name-Tony-age-18
需要修改配置文件 config.php
...
阅读全文