码迷,mamicode.com
首页 >  
搜索关键字:think    ( 1909个结果
Java this 的使用问题
review 代码的时候,对对象自己的方法调用是否使用this有了点争议,重新看了下think in java,看到了下面的一句话, 我是非常认同这句话的,google了一下,发现确实有人问着问题:https://stackoverflow.com/questions/516768/using-th ...
分类:编程语言   时间:2021-03-05 12:53:24    阅读次数:0
tp5.1 随机查询数据
说到随机查询数据,如果用sql的话 ,直接用 order by rand() 就是说随机排序,我们取多少条都可以 例: select * from table where 1 order by rand() limit 10 那tp5.1中如何实现呢? ThinkPHP5从V5.0.17之后,如果排 ...
分类:其他好文   时间:2021-03-04 13:05:43    阅读次数:0
剑桥雅思写作高分范文ESSAY51
Some think we can acquire knowledge from news reports. Others believe we cannot trust journalists. What do you think? What important qualities should ...
分类:其他好文   时间:2021-03-02 12:39:13    阅读次数:0
TP3.2与TP5.0的区别
1. 控制器输出return $this->fetch(); 5$this->display(); 3.2单字母函数去掉了 如:M() D() U() S() C() 3.2 5G() debug() 记录时间(微秒)和内存使用情况E() exception() 抛出异常处理C() config() ...
分类:其他好文   时间:2021-02-27 13:04:34    阅读次数:0
thinkphp3.2 A和R函数调用其他控制器下的方法
在Admin模块下调用Home模块下的方法如下: ...
分类:Web程序   时间:2021-02-16 12:43:34    阅读次数:0
ThinkPHP3.2.3 钩子方法使用
在Library/Think/Model.class.php 这个基础model类中在添加add,修改save,和删除delete 时各自回调用两个回调函数. 使用这两个回调函数会给开发带来方便. 1 . add()方法回调函数 // 插入数据前的回调方法 protected function _b ...
分类:Web程序   时间:2021-01-29 11:44:19    阅读次数:0
Think in Java 第四 五 章
Think in Java 第四章 控制执行流程 测试while public class whileTest { static boolean condition(){ boolean result = Math.random() < 0.99; System.out.println(result ...
分类:编程语言   时间:2021-01-28 11:58:06    阅读次数:0
Thinkphp 3.x bind注入(3)
接着上篇 https://www.cnblogs.com/cuocuo/p/14329868.html 当exp为bind的时候,虽然会拼接,但是find()和select()是没办法利用的,我们需要更改一下代码 <?php namespace Home\Controller; use Think\ ...
分类:Web程序   时间:2021-01-28 11:55:31    阅读次数:0
thinkphp3.2.3 简单实现增删改查
案例截图: 详解: 1) Application/Admin/Controller/目录下新建控制器文件AjaxController.class.php 1 <?php 2 namespace Admin\Controller; 3 use Think\Controller; 4 class Aja ...
分类:Web程序   时间:2021-01-27 14:04:07    阅读次数:0
Thinkphp 3.x exp注入(2)
接着上篇来看 https://www.cnblogs.com/cuocuo/p/14329379.html <?php namespace Home\Controller; use Think\Controller; use \Think\Logs; class IndexController ex ...
分类:Web程序   时间:2021-01-27 13:29:47    阅读次数:0
1909条   上一页 1 2 3 4 ... 191 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!