
thinkPHP5
文章平均质量分 60
mercenary's L
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
think PHP 5多数据库切换
think PHP5 数据库的切换,原创 2022-10-10 14:59:23 · 722 阅读 · 0 评论 -
thinkphp5-循环插入百万条数据
控制器 //由于是跨服务器的两个数据库需要建一个数据模型 <?php namespace 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 · 1380 阅读 · 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 · 385 阅读 · 0 评论 -
nginx 下隐藏think PHP5.1的入口文件
环境:PHP study的集成环境 打开nginx的nginx-conf server { 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 · 230 阅读 · 0 评论 -
php 函数排名
1 2 3 需要去度娘自己查询转载 2018-12-07 10:37:34 · 520 阅读 · 0 评论 -
php常用的系统函数大全
字符串函数 strlen:获取字符串长度,字节长度 substr_count 某字符串出现的次数 substr:字符串截取,获取字符串(按照字节进行截取) mb_strlen mb_substr strchr:与substr相似,从指定位置截取一直到最后 strrchr(获取文件后缀名):与strchr一样,只是从右边开始查找字符 strtolower:所有的字符都小写(针对英文字母...转载 2018-12-03 13:35:36 · 147 阅读 · 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 · 357 阅读 · 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 · 12585 阅读 · 0 评论