2018年8月29日

php5.6安装window7安装memcache.dll库所遇到的误区

摘要: 问题: window7 64位,下载的库 memcache.dll 为64位的,且对应php的版本。但是重启后phpstudy查看phpinfo依然没有memcache; 根源: 发现是下载的 memcache.dll 的位数不对,不是64位,而是32位 所下载的memcache.dll多对应的位数 阅读全文

posted @ 2018-08-29 21:47 shenzen_小白 阅读(459) 评论(0) 推荐(0) 编辑

基础篇---memcache

摘要: 十分钟学会memcache,比你想象的要简单 转发:https://baijiahao.baidu.com/s?id=1588816843517136163&wfr=spider&for=pc 一、核心优化概述 什么是优化,以更小的资源支持更大负载网站的运行,以小博大。 思路:尽量减少用户的等待时间 阅读全文

posted @ 2018-08-29 20:52 shenzen_小白 阅读(170) 评论(0) 推荐(0) 编辑

2018年8月16日

微信JSApi支付---常见问题

摘要: 1、支付一直报 “get_brand_wcpay_request:false” 错误 原因: 商户平台上设置的【支付授权目录】路劲不正确,比如:支付的页面的域名是:www.xxx.com/pay/subpay 这时应该填写该支付目录的上一级目录,即 www.xxx.com/pay (注意:结束需要加 阅读全文

posted @ 2018-08-16 19:31 shenzen_小白 阅读(622) 评论(0) 推荐(0) 编辑

2018年7月19日

php soap连接https的wsdl报错SOAP-ERROR: Parsing WSDL:Couldn't load from

摘要: 转发:https://blog.csdn.net/keyunq/article/details/51804728 SOAP-ERROR: Parsing WSDL:Couldn’t load from “xxxxxxx” 解决方案 用php的soapclient连接第三方的webservice,是h 阅读全文

posted @ 2018-07-19 16:21 shenzen_小白 阅读(2648) 评论(0) 推荐(0) 编辑

2018年7月3日

每日日志2018年0702

摘要: 一、linux环境上的定时任务 //todo 暂总结到这里。。。敬请期待下文 二、linux 的常规操作指令回忆 ①、设置权限为777 chmod -R 777 meilan 777代表最高权限 -R代表该文件里面的文件全部为777 ②、设置所属用户组和工作组 chown -R www:www me 阅读全文

posted @ 2018-07-03 00:00 shenzen_小白 阅读(104) 评论(0) 推荐(0) 编辑

2017年8月21日

学习教程20170821

摘要: 黑马程序员 http://yun.itheima.com/map?17zzj 阅读全文

posted @ 2017-08-21 14:40 shenzen_小白 阅读(115) 评论(0) 推荐(0) 编辑

bbc--平台点击进入详情页配置

摘要: 路径: 配置方式: $finderview = 'detail_base'; $arr = array( 'app'=>$_GET['app'], 'ctl'=>$_GET['ctl'], 'act'=>$_GET['act'], 'finder_id'=>$_GET['_finder']['finder_id'], ... 阅读全文

posted @ 2017-08-21 14:21 shenzen_小白 阅读(185) 评论(0) 推荐(0) 编辑

2017年8月15日

php解析入库跟出库

摘要: 转载:http://www.jb51.net/article/39092.htm 数据放入数据库和取出来显示在页面需要注意什么 入库时 $str=addslashes($str); $sql=\"insert into `tab` (`content`) values(\'$str\')\"; 出库 阅读全文

posted @ 2017-08-15 18:56 shenzen_小白 阅读(415) 评论(0) 推荐(0) 编辑

常规后台数据处理

摘要: $updatedata['suggest']=addslashes($postdata['suggest']);$updatedata['status']=intval($postdata['status']); 阅读全文

posted @ 2017-08-15 09:53 shenzen_小白 阅读(271) 评论(0) 推荐(0) 编辑

数据处理

摘要: 1 $po_data = array( "shop_id"=>$shop_id, "name"=>$this->_safe($params["name"]), "supplier_id"=>$this->_safe($params["supplier_id"]), ... 阅读全文

posted @ 2017-08-15 09:52 shenzen_小白 阅读(244) 评论(0) 推荐(0) 编辑

导航