欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > thinkphp教程 >
thinkphp教程
  • thinkphp中cookie和session中操作数组的方法

    thinkphp教程时间:2022-09-20 13:47:10 浏览:134次

    1.如何在ThinkPHP模板中操作session,session中是否保存了数组。 在ThinkPHP的模板中操作session时,可以参考ThinkPHP参考文档中的模板-系统变量一节。在默认模板引擎中,语法如下: {$Think.sess【查看详情】

  • thinkphp 如何把数组输出到html 让js 使用?

    thinkphp教程时间:2022-09-20 10:46:43 浏览:72次

    如何输出thinkphp的数组到html页面,让js使用 元素模板为您解答 使用下面代码即可 php代码 $this-assign(cararr, addslashes(json_encode($cararr))); js代码 cp={$cararr|raw};cp=JSON.parse(cp); console.log(cp);【查看详情】

  • THINKPHP5获取当前页面URL信息

    thinkphp教程时间:2022-09-14 17:16:31 浏览:134次

    想要获取当前页面的url信息,可以借助thinkphp 自带的request 类来获取当前的url信息 使用\think\Request类 $request = Request::instance(); 或者使用自带的助手函数 $request = request();$request = Request::i【查看详情】

  • ThinkPHP 5.1 跨域调用配置方法

    thinkphp教程时间:2022-08-18 15:13:14 浏览:53次

    因为最近的项目采用了API接口开发方式,后端需要配置跨域的规则以便前端能够访问。 系统采用的框架为 ThinkPHP,版本 5.1.19 关于OPTIONS请求 由于前端的知识不是很熟悉,查阅了网上的【查看详情】

  • thinkphp中如何统计查询

    thinkphp教程时间:2022-08-18 10:02:10 浏览:179次

    元素模板小编给大家分享一下thinkphp中如何统计查询,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧! 在ThinkPHP中系统提供以下几个查询方法的使用,方便于在后【查看详情】

  • thinkphp5 查询本月 上个月 本周 本年数据

    thinkphp教程时间:2022-08-18 09:58:58 浏览:179次

    thinkphp5自带了一些查询的方法,今天说一下查询本年、本月 上个月 以及本周的方法 whereTime()//此方法代替了between and 方法 实际用法如下: -whereTime(时间字段,year)//查询本年 -whereTime(时间【查看详情】

  • thinkphp获取当日、当月、当年数据

    thinkphp教程时间:2022-08-01 16:58:23 浏览:126次

    thinkphp根据时间戳查询今天到后天 db(table)-whereTime(time, between, [strtotime(date(Y-m-d)), strtotime(date(Y-m-d, strtotime(+2 day)))])-select(); //根据日期查询今天到后天 db(table)-whereTime(time, between, [2020-3-28,【查看详情】

  • thinkphp5.1 按每月来查询销售额

    thinkphp教程时间:2022-08-01 16:11:17 浏览:73次

    thinkphp5.1 如何查询每月的销售额元素模板为您解答使用下面代码即可输出每月销售,当然里面的字段需要按照自己的程序改改$list = $m-where($where) -field(SUM(`stream_money`) as stream_money,FROM_UN【查看详情】

  • ThinkPHP 5 PhpOffice/phpspreadsheet 导入和导出代码

    thinkphp教程时间:2022-07-12 10:43:10 浏览:100次

    首先使用composer安装扩展 composer require phpoffice/phpspreadsheet 创建文件 app/common/services/Phpoffice.php Phpoffice.php 文件内容 ?php namespace app\common\services; use think\Controller; use PhpOffice\PhpSpreadsheet\IOFa【查看详情】

  • tp5.1 esaywechat 报 Fatal error: Interface ‘Psr\SimpleCache\CacheInterface‘ not found in

    thinkphp教程时间:2022-07-11 18:02:56 浏览:138次

    tp5.1 esaywechat 报 Fatal error: Interface Psr\SimpleCache\CacheInterface not found in 原因是在vendor文件夹下psr文件缺少simple-cache模块。 解决 如果使用composer安装的话会自动生成,不知道我为啥没有,没【查看详情】

  • THINKPHP提示Class ‘think\Facade\Db‘ not found

    thinkphp教程时间:2022-07-06 21:33:19 浏览:151次

    所遇问题:在PHP7.2.10,提示Class think\Facade\Db not found 场景:thinkphp开发中引入think\Facade\Db在线下没有问题,线上(linux环境)报错 原因:在线下环境中由于不区分大小写所以导致招不到文【查看详情】

  • thinkphp5.1 $autoWriteTimestamp = true 自动写入时间戳

    thinkphp教程时间:2022-07-05 14:09:37 浏览:118次

    thinkphp5.1在对应的模型里面写入下面代码是什么意思呢? protected $autoWriteTimestamp = true; 就会为数据库中的create_time,delete_time,update_time自动记录下操作的时间 如果你的数据库的着三个属性不【查看详情】

  • thinkphp 5.1中withAttr 用法

    thinkphp教程时间:2022-07-04 20:26:52 浏览:190次

    1、withAttr是thinkphp5.1之后的方法,可以处理字段的返回值,如果和use关键字连用,可以某个参数处理返回值。 例如: ?php namespace app\index\model; use think\Model; use think\Db; class Articles extends M【查看详情】

  • thinkphp5.1 使用between查询 某段时间内的数据

    thinkphp教程时间:2022-06-30 20:12:00 浏览:171次

    thinkphp5.1 如何查询某个时间段的数据 //今天的数据 $start_time =strtotime(date(Y-m-d,time()). 00:00:00); $end_time =strtotime(date(Y-m-d,time()). 23:59:59); $where[] = [create_time, between time, [$start_time, $end_time]]; U【查看详情】

  • thinkphp官方类库下载地址

    thinkphp教程时间:2022-05-17 16:02:18 浏览:62次

    THINKPHP 官方类库下载地址 验证和权限控制 PHP-Casbin casbin/casbin https://github.com/php-casbin/php-casbin 6.0 Authorization casbin/think-authz https://github.com/php-casbin/think-authz 5.1访问控制库(Casbin)扩展 casbin【查看详情】

  • TP5中 解决save操作在foreach中只保存最后一条数据

    thinkphp教程时间:2022-02-08 20:21:10 浏览:118次

    正常情况下,tp5保存数据到数据库,示例: model(article)-allowField(true)-isUpdate(false)-save($data); foreach循环中,保存数据到数据库,应为: foreach ($dataArr as $data) { model(article)-allowField(true)-isUp【查看详情】

  • thinkphp layui 使用tinymce 编辑器会自动转义怎么办?

    thinkphp教程时间:2022-02-07 17:33:26 浏览:100次

    最近在使用 thinkphp +layui+tinymce 编辑器 发现会自动转义 加入字符串类的 a元素模板/a 保存再编辑会变成 html代码形式的 a标签链接 本来只想展示代码的,但会自动转换 怎么办? 最后发现【查看详情】

  • ThinkPHP5如何表单令牌刷新

    thinkphp教程时间:2022-02-05 11:42:36 浏览:94次

    制作登录页面的时候,加入了表单令牌,账号和密码输入错误后,再登录的话,会提示表单令牌错误, 这是因为旧的令牌已经过期了,我们要处理下前端的token,修复的办法,在路由文【查看详情】

  • thinkphp5.1验证器获取$data数据,自定义验证,多条件唯一性验证unique验证

    thinkphp教程时间:2022-02-04 17:33:11 浏览:58次

    thinkphp5.1 验证数据唯一性 可以使用unique,但如果一个表里面需要判断2个ID类的数据不能重复,要是不同ID的可以相同,那如何解决呢?使用下面代码,特别是红色部分代码class Teacher e【查看详情】

  • ThinkPHP中的$this->success()与$this->error()方法的使用

    thinkphp教程时间:2022-02-03 16:58:24 浏览:168次

    为什么$this-error()和$this-success()跳转到同一个模板文件? Thinkphp的默认配置错误和成功是一个模板,可以在配置里面添加 TMPL_ACTION_ERROR=Public:error //默认错误跳转到Public文件夹下面的erro【查看详情】

  • Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com