
thinkPHP5
文章平均质量分 60
mercenary's L
这个作者很懒,什么都没留下…
展开
-
think PHP 5多数据库切换
think PHP5 数据库的切换,原创 2022-10-10 14:59:23 · 717 阅读 · 0 评论 -
thinkphp5-循环插入百万条数据
控制器//由于是跨服务器的两个数据库需要建一个数据模型<?phpnamespace app\index\controller;use think\Controller;use app\index\model\index as indexModel;class Index extends Controller{ public function insertdata()...原创 2019-10-08 11:04:36 · 1370 阅读 · 0 评论 -
phpexcel 导入导出
导入:HTML部分: <div class="page-body"> <div> <b style="font-size: 18px;">表格导入页</b> </div><br /> <form action="" method="po...原创 2019-08-30 11:40:31 · 380 阅读 · 0 评论 -
nginx 下隐藏think PHP5.1的入口文件
环境:PHP study的集成环境打开nginx的nginx-confserver { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; root "D:/phpstudy/PHPTuto...原创 2019-08-01 11:52:19 · 223 阅读 · 0 评论 -
php 函数排名
12 3需要去度娘自己查询转载 2018-12-07 10:37:34 · 511 阅读 · 0 评论 -
php常用的系统函数大全
字符串函数strlen:获取字符串长度,字节长度substr_count 某字符串出现的次数substr:字符串截取,获取字符串(按照字节进行截取)mb_strlenmb_substrstrchr:与substr相似,从指定位置截取一直到最后strrchr(获取文件后缀名):与strchr一样,只是从右边开始查找字符strtolower:所有的字符都小写(针对英文字母...转载 2018-12-03 13:35:36 · 142 阅读 · 0 评论 -
google'map in php (thinkphp5)
<!DOCTYPE html><html lang="en"><head><meta http-equiv="X-UA-Compatible" content="IE=7" /><meta http-equiv="Content-Type" content="text/html; cha转载 2018-11-01 10:17:27 · 350 阅读 · 0 评论 -
TP5自带分页使用方法说明
public function index(){ $business=db('archives')->where('cate_id=51')->field('id,title,litpic,time,cate_id')->order("time DESC")->limit(0,5)->select(); $nav=db('cate...原创 2018-10-26 16:17:10 · 12569 阅读 · 0 评论