insertAll_批量添加
这里只是拷贝一下手册代码,详情请查看手册
<?php
namespace app\index\controller;
use think\Db;
class Index {
public function index(){
// 1.创建员工信息数组
$data = [];
...
thinkphp 怎么获取当前的url地址
//原生php
//url地址
echo $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
//输出www.taotaoit.com/faq/details/18.html
echo "<br>";
//若需要显示协议
echo $_SERVER["REQ...
thinkphp批量删除
model里面用到的函数
物理删除
/**
* 批量删除-物理删除
*/
public function delAll(){
$rd = array('status'=>-1);
$m = M('abc');
$id = I('id',0);
$rs = $m->where('id in...
TP3.2不同模块怎么调用MODEL
比如Home模块需要调用Admin模块里面存在的关联模型。怎么调用:
后台模块Admin
Admin
--Model
-- --ArticleModel.class.php(关联模型)
前台模块Home
也需要使用Admin关联模型。怎么弄?多谢~~
$article = D('Admin/Article');
// 或者
$a...
thinkphp中使用Org/util/string.class.php中的函数
// 导入类库
$Verify = new \Org\Util\String;
$loginName = $Verify->randString();
exit($loginName);
输出结果BPbrTH
参考网址https://www.kancloud.cn/manual/thinkph...
thinkphp中分类获得迭代上级
/**
* 迭代获取上级
*/
public function getParent($ids = array(),$catId){
$sql = "select catId,catName,parentId from __PREFIX__faq_cats WHERE catId=$catId AND isShow=...
thinkphp中分类获得迭代下级
/**
* 迭代获取下级
*/
public function getChild($ids = array(),$pids = array()){
$sql = "select catId from __PREFIX__product_cats where catFlag=1 and parentId in(".im...
thinkphp获取数组大小
控制器中:echo count($arr)
模板中:{$arr | count}
模板中if判断语句中 <if condition="count($arr)">.....</if>
ThinkPHP中获得一条数据表信息自定义函数public function get()
/* 一般情况 */
public function get(){
return $this->where("id=".(int)I('id'))->find();
}
/* 获取信息后拆分多图 */
public function get(){
$m = M('products');
$rs = $m->wh...
Thinkphp图片水印和文字水印
1.Thinkphp图像处理
1.1图片处理类和库
首先,在Thinkphp\Think\Image类中有图像处理功能,支持Gd库和Imagick库,包括对GIf图像处理的支持。
1.2实例化类库
$image = new \Think\Image();
实例化image后,默认使用GD库进行图像操作,如果需要使用Imagick...
thinkphp二级域名配置
官方文档
http://document.thinkphp.cn/manual_3_2.html#domian_deploy
以下内容来自网络
首先是在config.php文件中开启二级域名配置
'APP_SUB_DOMAIN_DEPLOY' => true
然后配置二级域名规则如下
'APP_SU...
thinkphp 5 闭包函数的使用详解(传递参数)
普通使用
举个栗子:
$this->where(function ($query)
{
$query->where('id', 1)->whereor('id', 2);
})->find();
上述栗子就是一个简单的where查询的闭包函数使用,使用匿名函数添加...
thinkphp5 删除 destroy
删除当前模型
删除模型数据,可以在实例化后调用delete方法。
$user = User::get(1);
$user->delete();
根据主键删除
或者直接调用静态方法
User::destroy(1);
// 支持批量删除多个数据
User::destroy('1,2,3');
// 或者
User::destro...
thinkphp中怎么过滤html代码?
thinkphp模板显示中,怎样去掉内容中的链接?
{$val['content']|htmlspecialchars_decode|strip_tags}
这样就可以了
htmlspecialchars_decode() 函数把预定义的 HTML 实体转换为字符。
https://www.w3school.com...
thinkphp5分页paginate()出来的数据怎样循环插入数据?
paginate()出来的数据怎样循环插入数据?
paginate()分页如何转数组操作数据之后再转回对象?
thinkphp5 model里面用toarray后怎么分页?
以上类似问题的出现,是因为在model模型中使用了->paginate()分页,由于返回的是对象,所以要把数据转换到数组,才能在模...
thinkphp5 分页带参数的解决办法
利用tp5默认分页,搜索后点分页,又跑到原来列表了。怎么把搜索关键字传到分页里面呢?
$mrs = Db::name('log_operates')
->where($where)
->order('operateId', 'desc')
->paginate(input('pagesiz...
关于本站
“最难不过坚持”
本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作
有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339
2655
39
分类目录
最新评论
- https://jueru.net/
-
- :weixiao:
-
- :shuijiao: :weiqu: :zhenbang: :leng:
-
- :yiwen: :yiwen: :yiwen: :yiwen:
-
- 这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
-
文章标签更多