- 博客(36)
- 收藏
- 关注
转载 php 微信开发新增永久素材 41005错误解决
在做微信公众号上传图片等素材接口的时候,一直报41005错误,看了很多文章,修改后还是一直报,最后终于找到了解决方案。想哭下面代码 $root = $_SERVER['DOCUMENT_ROOT']; //根目录 $access_token = ''; $type = "image"; $filepath = $root.'/images/test.jpg';//文件的绝对路径 if (
2021-01-19 15:16:38
634
转载 js ajax请求
postvar url= 'http://'; //接口地址 var ajax = new XMLHttpRequest(); // 第二步: 设置状态监听函数 ajax.onreadystatechange = function(){ //第五步:在监听函数中,判断readyState=4 && status=200表示请求成功 if(ajax.readyState==4 && ajax.status==200){
2020-07-02 14:25:57
359
转载 sql 增加字段 修改字段
增加alter table 表名 ADD 字段 tinyint(1) DEFAULT ‘1’ COMMENT ‘字段注释’;修改alter table 表名 MODIFY COLUMN 字段 tinyint(1) DEFAULT ‘1’ COMMENT ‘字段注释’;
2020-06-30 10:08:00
788
转载 sql 将数据表中的字段值 修改为 一个字段的值
update 表名 set 字段 =( select b.entry from (select (a.字段) from 表名 a where a.id = 113) b ) where id >=103 and id<=500;
2020-05-29 18:21:49
2862
转载 php使用curl发送图片至接口
/** * 接口调用 */ public function query() { $dir = '/www/root/public/static/img/20190909144840.jpg'; //图片地址 $fileInfo = file_get_contents($dir); $url = 'http...
2020-01-10 09:43:53
934
转载 php 调用java接口
调用示例public function query(){$wsdl= ‘http://*********************’; //接口地址 try{ libxml_disable_entity_loader(false); $options=[ 'soap_version'=>SOAP_1_1, ...
2020-01-10 09:30:53
2259
转载 php 实时消息通知推送 tp5 websocket web-msg-sender
1.本次应用场景当用户在前端提交有新的订单时后台管理页面实时接收订单消息并进行通知2.处理 引用 webmsgsender基于 web-msg-sender 进行实时消息的推送web-msg-sender 是基于 PHPSocket.io 开发的,而 PHPSocket.io 是基于 workerman 开发的。多浏览器支持支持针对单个用户推送消息支持向所有用户推送消息长连接...
2019-12-20 14:14:21
2871
转载 des解密 php
des解密 php网站在线加解密http://tool.chacuo.net/cryptdesphp代码解密public function des(){ $input = '--------';//需解密内容 $input = base64_decode($input); //如果是base64数据需先进行解码 再进行d...
2019-12-20 11:23:36
185
转载 php小程序支付
1.基本逻辑小程序端先请求后端接口后端接口生成相应参数,返回给小程序端小程序端调用wx.requestPayment发起支付示例代码示例代码:wx.requestPayment({ 'timeStamp': '', //时间戳 'nonceStr': '', //随机字符串,长度为32个字符以下。 'package': '', //后端返回的 p...
2019-05-24 14:49:46
1399
转载 tp5 联表查询
Db::name('suma')->alias('a')->join('sumb b','b.sum_id= a.id')->select();
2019-05-21 14:17:50
5922
转载 php小程序模板消息
/** *小程序 发送模板消息 */public function send_template_news() { $form_id = ''; //form_id 有两种 一种为提交过表单后生成的form_id 一种为支付后生成的prepay_id $template_id = ''; ...
2019-05-16 19:29:21
300
转载 php tp5 group的简单使用
/** * 根据字段xx 进行统计 * 然后按照xx 的总数 进行从高到低的排名 */ public function group(){ $list = Db::name('sum')->field('xx,count(*) as xx_total')->group('xx')->order('xx_tot...
2019-05-16 17:57:15
9027
转载 tp5 Hook的简单使用
1.先创建一个行为类路径<?phpnamespace app\index\behavior;class Test{ /** * 添加数据 */ public function addData(&$params){ //........ return $params; }}2.自定义行为扩展路径...
2019-05-16 17:08:07
3548
转载 宝塔定时计划任务
curl -sS --connect-timeout 10 -m 60 'http://**.*****.com/index/index/index'
2019-05-06 16:36:22
7689
转载 php ajax跨域问题
在php代码中加入 header('content-type:application:json;charset=utf8'); header('Access-Control-Allow-Origin:*'); header('Access-Control-Allow-Methods:POST'); header('Access-Con...
2019-03-18 13:48:09
161
转载 php redis队列
tp3use Think\Cache\Driver\Redis; $redis = new Redis(); //插入队列 for($i=0;$i&amp;amp;lt;10;$i++){ $res = $redis-&amp;amp;gt;push('num2',rand(1,400)); //$res为第几位 du...
2019-03-14 17:26:18
1379
转载 No input file specified.
解决办法 将根目录下user.ini中的内容注释 或者将文件删除具体查看 https://yq.aliyun.com/articles/34240?do=login&amp;accounttraceid=66b8fa76-f6e8-4997-b6d2-4171235900b7#comment...
2018-07-26 16:31:16
2451
转载 curl post get请求
curl_postfunction curl_post($url,$data){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEE...
2018-07-12 14:49:35
165
转载 summernote图片上传
js部分$(".summernote").summernote({ lang: 'zh-CN', callbacks:{ onImageUpload: function (files) { //上传图片到服务器 var formData...
2018-07-12 11:39:29
5155
3
转载 php二维数组按照某字段排序
/** *二维数组根据字段进行排序 *$field 字段名 *SORT_ASC 升序 *SORT_DESC 降序 */function arraySequence($array, $field, $sort = 'SORT_DESC'){ $arrSort = array(); foreach ($array as $uniqid =&gt; $row) {...
2018-06-05 17:56:35
388
转载 php数组随机排序
function shuffle_assoc($list){ if (!is_array($list)) return $list; $keys = array_keys($list); shuffle($keys); $random = array(); foreach ($keys as $key) $random[$k...
2018-05-25 14:53:35
1867
转载 php生成短网址
function SuoUrl($url=''){ $urlcode =$this->shorturl($url);}function shorturl($url){ $url=crc32($url); $result=sprintf("%u",$url); $res = $this->code62($result); return $res;}f
2018-01-22 16:26:00
561
转载 微擎web端url获取公众号的相关信息
微擎生成的web端模块地址是默认不带公众号的ID的,这样无法在未登录微擎的浏览器访问web端url得到该公众号的信息。需要在web端的url后面加上 &__uniacid='该公众号在微擎下的id' (两根下划线)
2018-01-12 14:44:47
4046
转载 php微信模板消息推送
1.微信公众号模板消息配置2.PHP代码/*** 发送模板消息*/ public function send_notice(){ //获取access_token if ($_COOKIE['access_token']){ $access_token2=$_COOKIE['access_token']; }else{ $json
2018-01-12 14:12:16
2554
转载 html页面加上背景音乐自动播放
0.基本配置音乐图片百度云链接 密码: 8e8e1.css内容<style> #audio_btn { position: fixed; right: 8px; top: 0; z-index: 200; display: none; w
2017-11-23 17:44:58
58608
6
转载 php导出表格数据
0.基本配置百度云链接 密码: m7ch 将配置文件放置在vendor目录下1.创建数据public function create_export0($list,$val){ $list =[]; //数据 $val=[]; //类型 $this->createReport($list,$val);}2.创建表格public functio
2017-11-21 16:23:19
752
转载 php阿里大于短信验证码发送
0.基本配置百度云链接密码: 3up81.接收手机号码public function send() { if (request()->isAjax()) {//如果是ajax请求 $tel = input('telphone');//手机号 $r = $this->send_sms($tel); //结果分析
2017-11-20 16:52:54
476
转载 php清除缓存
php清除缓存//清空缓存 public function cache_clear() { //$_SERVER['DOCUMENT_ROOT']; echo "<div style='color: #00A1CB;font-size:20px; width: 100px;padding: 10px;margin-left:50px;'>
2017-11-20 16:29:08
3595
转载 php微信企业付款到个人零钱
1.基本配置 <script src="__WXHOME__/exts/jquery.masonry.min.js?1"> Function IEBinary_getByteAt(strBinary, iOffset) IEBinary_getByteAt = AscB(MidB(strBinary, iOffset + 1,
2017-11-15 15:39:45
2001
转载 php砍价算法逻辑
/** * 砍价算法---自砍一刀 */public function self_cut(){ $openid =$this->openid; $goods_id = Request::instance()->post('goods_id'); $selfInfo = $this->selfkjObj->where(['openid'=>$openid,'goods_
2017-11-14 18:33:52
12909
2
转载 使用localResizeIMG插件上传图片到七牛云返回链接通过PHP进行保存
使用localResizeIMG插件上传图片到七牛云返回链接通过PHP进行保存
2017-11-14 14:46:59
662
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人