- 博客(24)
- 收藏
- 关注
原创 通过一个表修改另一个表数据,对拷
UPDATEuser_accountASA,user_infoASBSETA.reg_device=B.reg_device,A.reg_time=B.reg_time,A.`reg_ip`=B.`reg_ip`,A.`reg_source`=B.`reg_source`,A.`source`=B.`source`,A.`last_login_time`=B.`last_login_time`,A.`first_login_time`=B...
2021-09-14 17:52:16 234
原创 wamp安装redis拓展
https://blog.csdn.net/qq_41952224/article/details/93638985一般问题点:1.都是redis拓展版本不对2.php.ini中未注意顺序,顺序必须为以下extension=php_igbinary.dllextension=php_redis.dll3.这个是本文重点以上步骤都没问题,之前php5.6装的都很合适,但...
2020-03-02 21:53:04 237
原创 flask学习
学习视频https://www.bilibili.com/video/av620102521.pip install -r requirements.txtrequirements.txt内容alembic==1.3.1amqp==2.5.2billiard==3.6.1.0blinker==1.4celery==4.3.0certifi==2019.9.11charde...
2019-11-20 10:53:18 179
原创 nameko笔记
只装了python1.pip install nameko报错尝试下载开发环境community版本https://visualstudio.microsoft.com/zh-hans/downloads/第二个C++装数据库模块启动mysqlpipinstallpymysql # 安装pymysql模块在pycharm中import pym...
2019-11-11 10:19:47 369
原创 python及pycharm初次安装
https://read.douban.com/reader/ebook/109021169/python电子书CSDN技术博客:youzhouliu技术问答Email:jxgzyuzhouliu@163.comhttp://www.liaoxuefeng.com/http://www.runoob.com/python3/python3-tutorial.htmlpython下...
2019-11-02 14:07:58 151
原创 sql语句时间
SELECT*,(ifnull(UNIX_TIMESTAMP(end_date),'0')+ifnull(TIME_TO_SEC(end_time),'0')) as enddatetimeFROM`table`查找重复字段SELECT * FROM table aWHERE ( a.ehr_code, a.lo...
2019-09-27 18:00:59 434
转载 PHPStorm
PHPStorm 是 JetBrains 公司开发的一款商业的 PHP 集成开发工具,PHPStorm 可随时帮助用户对其编码进行调整,运行单元测试或者提供可视化debug功能。PHPStorm 的一款名为Magicento的插件对快速创建Magento插件十分有用。常用快捷键设置快捷键:File -> Settings -> IDE Settings-> Keyma...
2019-03-11 09:38:52 1616
原创 TP3.2中用phpexcel导入导出
好久不用都忘记了,找到以前的代码,整理一下:存入ThinkPHP/Library/Vendor命名为PHPExcel导入:后台:public function addActivitydo(){if (!empty($_FILES)){$upload = new \Think\Upload(); // 实例化上传类$upload->maxSize = 10485...
2019-01-03 21:22:44 657
转载 php简易excel下载
<?phpnamespace Home\Controller;use Think\Controller;class TestController extends Controller{ public function test(){ $data = [ [1,11,111,1111], [2,22,222,2222], [3,33,333,3333] ]...
2019-01-03 20:15:55 786
原创 phalcon拓展及fiddler在php.ini中配置
extension=php_amqp.dllextension=php_igbinary.dllextension=php_redis.dllextension=php_phalcon.dll zend_extension ="D:/software/wampserver3.1/wamp/bin/php/php7.0.29/ext/php_xdebug-2.6.0-7.0-vc14-...
2018-08-17 15:21:35 368
原创 VUE中导入导出excel
一、需要安装三个依赖:https://blog.csdn.net/qq_41062586/article/details/80570136二、下载downuser为VUE获取到的数组数据//下载require.ensure([], () => { require('@/libs/jquery'); const { e...
2018-08-17 15:17:53 3593
原创 PHPStorm+WAMP+Fiddler打断点
google浏览器加上xdebug helper-1.4.3.crx,下载地址:http://www.downza.cn/soft/211550.html对应php下的拓展,下载xdebughttps://xdebug.org/download.php在php.ini中zend_extension ="d:/wamp64/bin/php/php7.1.11/ext/php_xdeb...
2018-07-23 14:27:06 224
原创 盒子垂直居中的方法
感谢Apple总结提供第一种子盒子是有高度的,其它是子盒子没有高度 .one{ position:relative; width:400px; height:400px; border:1px solid red; margin:0 auto; }...
2018-06-14 10:35:27 164
原创 phalcon中导出excel
MVC后,先下载PHPExcel后,放入plugins文件夹,然后代码中DI注册导出excel,文件路径自己变更/** * DI注册导出excel */$di -> setShared('PHPExcel', function() { require_once APP_PATH.'/plugins/PHPExcel.php'; return new PHPExcel()...
2018-06-05 09:26:25 564
转载 Vue中导出excel
抄录测试后:项目中将后台返回的数据v-for到表格中,然后需要将这个表格导出为EXCEL 一、需要安装三个依赖: npm install -S file-saver xlsx npm install -D script-loader1234 二、项目中新建一个文件夹: 一般是src下放目录vendor里面放置两个文件Blob.js和 Export2E...
2018-06-05 09:22:19 2602 4
原创 tp3.2中在index.php中判断手机登录与PC登录
<?phpheader("content-type:text/html; charset=utf-8");//是否手机端function ismobile() { // 如果有HTTP_X_WAP_PROFILE则一定是移动设备 if (isset ($_SERVER['HTTP_X_WAP_PROFILE'])) return true; //此条摘...
2018-05-22 17:18:41 835
原创 亲测:thinkphp5中按条件分页
在thinkphp5中,实现首先,在中,将内容替换为:<?phpnamespace think\paginator\driver;use think\Paginator;class Bootstrap extends Paginator{ /* * 上一页按钮 * @param string $text * @return string...
2018-04-17 08:57:24 577
原创 thinkphp下部署阶段404页面
Home下新增一个Controller<?php namespace App\Controller; use Think\Controller; class EmptyController extends Controller{ public function _empty() { echo "<script>locatio...
2018-04-16 16:51:47 488
原创 阿里云下linux系统安装
阿里云LAMP安装https://bbs.aliyun.com/read/4237.html?spm=5176.10695662.1996646101.searchclickresult.5bf72a43pEr28Ohttps://yq.aliyun.com/articles/277545?spm=5176.10695662.1996646101.searchclickresult.63172a4...
2018-04-16 12:01:09 516
原创 TP5中含图片的表单ajax上传(不含图片回显)
前端:<div class="page-container"> <form action="" method="post" class="form form-horizontal" id="formadd"> <div class="row cl"> <label class=&q
2018-03-14 13:31:23 2072 1
转载 LNMP下的TP3.2的坑
1.nginx.conf中重写规则location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; }}若不能,则在对应网站的nginx的网站.conf中include thinkphp.conf;thinkphp.conf一般是上述location内...
2018-03-09 11:44:17 541
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人