分类: PHP开发
thinkphp5去除index.php的几大方式,亲测有效
隐藏index.php的方法
在Thinkphp5中官方给的隐藏去除后缀index.php方法如下:
PS:这里说的入口文件指的是公共/ index.php文件,配置文件就在这个目录下
可以……
PHP插入排序算法代码演示
当谈到PHP算法演示时,有很多不同的算法可以通过PHP来实现。以下是,安排插入排序算法演示示例:
PHP插入排序(Insertion Sort):
function insertionSort($a……
PHP各类时间转换时间戳汇总大全
php时间戳转换代码
// 当前时间戳
echo time();
//当前时间
echo date("Y-m-d H:i:s");
// 当前时间转换成时间戳
echo strtotime(date("Y/m/d"));
//当前时间……
thinkphp页面图片视频文件对接存储到七牛云指定目录
1、准备工作
注册七牛云账号,可以有免费的10G储存空间。
到 个人中心-密钥管理 查看 AccessKey 和 SecretKey。
2、SDK 下载
命令行进入到项目根目录,使用 co……
thinkphp框架paginate带变量参数的分页
后台php
public function index()
{
if (input('yuansuo') != null) {
$grade= input('grade');
$result = db('db')->where('gra……
Thinkphp5获取访客用户ip地址的方法
用户访问tp5网站,可以通过内置ip()函数获取ip地址
$request = Request::instance();
echo '访问ip地址:' . $request->ip();
ThinkPHP5使用模型进行多级栏目输出并在视图页面遍历显示
模型代码
// application/common/model/Category.php
namespace app\common\model;
use think\Model;
class Category extends Model
{
……
thinkphp5添加栏目实现select下拉option树状图结构包含二级三级栏目
控制器部分代码
// 添加栏目
public function add()
{
// 判断是否从父栏目进入 fathorid
if (input('fid')) {
$fid = input('fid');
// ……
thinkphp5解决多级子栏目遍历的模型控制器视图代码
模型代码
public static function joinColumnChannel($parentId = 0)
{
// 使用模型自身的查询构造器
$categories = self::alia……