上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: php格式化数字:位数不足前面加0补足 先实例,后讲解 PHP代码 <?php $var=sprintf("%04d", 2);//生成4位数,不足前面补0 echo $var;//结果为0002 ?> PHP字符串sprintf()函数 语法 sprintf(format,arg1,arg2,ar 阅读全文
posted @ 2020-11-23 13:22 糖糖Y 阅读(198) 评论(0) 推荐(0) 编辑
摘要: <?php function export_order(){ //设置内存 ini_set("memory_limit", "2048M"); set_time_limit(0); include_once('includes/PHPExcel.php'); include_once('includ 阅读全文
posted @ 2020-10-29 15:29 糖糖Y 阅读(740) 评论(0) 推荐(0) 编辑
摘要: /* * 处理地址匹配出省市区 */ function handleAddress($address){ preg_match('/(.*?(省|自治区|北京市|天津市))/', $address, $matches); if(count($matches) > 1){ $province = $m 阅读全文
posted @ 2020-10-29 15:20 糖糖Y 阅读(727) 评论(0) 推荐(0) 编辑
摘要: 开发前需要准备的工作 1、 须有一个有卡券权限的公众号 2、 公众号开通微信卡券功能 通过常见会员卡接口生成会员卡,生成会员卡时设置激活方式为接口激活,activate_url=“xxxx”; 待用户领取到会员卡点击激活按钮时会跳转到activate_url设置的url,而且官方会自动在激活url后 阅读全文
posted @ 2020-10-27 16:10 糖糖Y 阅读(702) 评论(0) 推荐(0) 编辑
摘要: 1、打开 ‘管理工具’ 下 ‘任务计划程序’: 2、新建任务: 3、设置常规选项: 4、新建触发器: 5、新建操作/启动程序: 6、最后点 ‘确定’。 附【测试时:test.php和test.bat在同一级目录下】: 1、test.bat内容: E:"E:\phpStudy\php55\php.ex 阅读全文
posted @ 2020-10-22 14:53 糖糖Y 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 上传图片报如下错误: Unable to guess the mime type as no guessers are available (Did you enable the php_fileinfo extension?) 主要原因是 php_fileinfo 未被开启。 解决 找到 php. 阅读全文
posted @ 2020-10-19 17:58 糖糖Y 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 1、PHP 7.0.x 添加SQLserver扩展 (1)7.0.x的扩展下载地址 Microsoft Drivers for PHP for SQL Server https://www.microsoft.com/en-us/download/details.aspx?id=20098 下载下来 阅读全文
posted @ 2020-10-15 13:31 糖糖Y 阅读(1908) 评论(0) 推荐(0) 编辑
摘要: 1、Compress.php(该文件放在vendor文件夹中) 1 <?php 2 class Compress 3 { 4 private $src; 5 private $image; 6 private $imageinfo; 7 private $percent=0.5; 8 9 /* 10 阅读全文
posted @ 2020-09-27 10:06 糖糖Y 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 原因是因为Swiper提前初始化了,然而数据还没有加载完成。解决方法如下: 1、在Swiper初始化时 swiper0 = new Swiper('.w0', { initialSlide :0, observer:true,//修改swiper自己或子元素时,自动初始化swiper observe 阅读全文
posted @ 2020-09-27 09:56 糖糖Y 阅读(716) 评论(0) 推荐(0) 编辑
摘要: index.wxml页面 1 <view class="info"> 2 <form bindsubmit="save"> 3 <view class="info-list"> 4 <view class="list-left">店铺logo<text></text>:</view> 5 <view 阅读全文
posted @ 2020-09-01 10:33 糖糖Y 阅读(920) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页