thinkphp
不负好时光!
qq 1374394031
展开
-
php群发邮件
git上下载phpmailer<?phprequire_once("PHPMailer-master/src/PHPMailer.php");require_once("PHPMailer-master/src/SMTP.php");$title = "节日快乐";$content = "祝你程序节快乐";$to = "614223981@qq.com";print_r(s...原创 2019-10-25 10:45:21 · 741 阅读 · 3 评论 -
fastadmin弹框提示不起作用 confirm
buttons: [ { name: 'ok', text: '通过', title: '通过', icon: '', confirm: '确定通过审核吗?', c...原创 2019-09-10 11:17:17 · 4355 阅读 · 0 评论 -
fastadmin的基本用法 自动生成crud模块
注意 命令需要在 fastadmin项目中使用fastadmin使用教程cmd cd 到 项目中php think crud -t fa_student -c student/Student此代码的意思是 根据fa_student表创建student模块 减少了编写代码的时间php think menu -c student/Student此代码的含义是在菜单栏中显示s...原创 2019-09-09 17:01:41 · 3512 阅读 · 0 评论 -
php私活
欢迎加入PHP私活,群聊号码:820623970原创 2019-03-28 19:31:39 · 1475 阅读 · 1 评论 -
php无关联表查询排序分页
$data=Db::table('fa_caselistsx') ->union('SELECT * FROM fa_caselistyw') ->union('SELECT * FROM fa_caselistyy') ->union('SELECT * FROM fa_caselistyy') ->union('SELECT * FROM fa_cas...原创 2019-03-16 08:34:32 · 344 阅读 · 0 评论 -
php 秒嘀短信验证码
<?php //使用框架 可以将该代码放在vendor文件夹下class Aa{ public $BASE_URL = "https://api.miaodiyun.com/20150822/";/** * url中的accountSid。如果接口验证级别是主账户则传网站“个人中心”页面的“账户ID”, */ public $ACCOUNT_SID = ""; // 主...原创 2019-03-07 15:33:39 · 372 阅读 · 0 评论 -
php秒杀
首先你要下载redis 这里用的是乐观锁悲观锁不建议使用 高并发下不太好用 public function del(){ for($i=0;$i<10;$i++){ $this->redis->lPop('miaosha'); } } public function le(){ $redis = $this...原创 2019-01-22 16:06:47 · 465 阅读 · 0 评论 -
多图片上传
上传效果具体是这样的`此处需要js文件css文件在这里没法上传想要的可以加我qq1374394031<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>showImages</title> <style ty原创 2019-01-22 16:03:40 · 969 阅读 · 0 评论 -
php图片拼合
文件目录 访问index.php<?php$bigImgPath = "image/c.jpg";$qCodePath = "image/d.jpg"; $bigImg = imagecreatefromstring(file_get_contents($bigImgPath));$qCodeImg = imagecreatefromstring(file_get_content...原创 2019-01-22 15:50:21 · 458 阅读 · 0 评论 -
支付宝扫码支付
/***支付宝支付*/public function alipay(){Vendor(‘alipay.AopSdk’);Vendor(“alipay.aop.AopClient”);vendor(‘alipay.aop.request.AlipayTradePagePayRequest’);//构造参数$aop = new \AopClient ();$aop-&amp;amp;amp;amp;gt;ga...原创 2019-01-17 16:05:51 · 383 阅读 · 0 评论