上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: select trx_state, trx_started, trx_mysql_thread_id, trx_query from information_schema.innodb_trx; 阅读全文
posted @ 2019-12-30 17:16 X__cicada 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 他大爷的,原来是在\config文件夹下的middleware.php里设置 阅读全文
posted @ 2019-12-30 14:59 X__cicada 阅读(809) 评论(0) 推荐(0) 编辑
摘要: 开启严格模式 //表示该函数不能有返回 //表示该函数必须返回Int类型 //表示该函数必须返回string类型 //表示该函数必须返回bool类型 原理相同 阅读全文
posted @ 2019-12-28 18:59 X__cicada 阅读(1206) 评论(0) 推荐(1) 编辑
摘要: ~~ 阅读全文
posted @ 2019-12-28 18:38 X__cicada 阅读(551) 评论(0) 推荐(0) 编辑
摘要: <?php class Singleton{ //私有的静态属性 用于保存实例 private static $instance = null; //私有的构造方法 private function __construct() { //echo "this is construct\n"; } // 阅读全文
posted @ 2019-12-26 19:17 X__cicada 阅读(90) 评论(0) 推荐(0) 编辑
摘要: composer require topthink/think-view 使用配置文件替换原本路径 config/view.php 'tpl_replace_string'=>[ '__STATIC__'=>'/static/' ] 阅读全文
posted @ 2019-12-23 16:40 X__cicada 阅读(1648) 评论(0) 推荐(0) 编辑
摘要: 使用app目录下的provider.php 应用目录下新建exception 新建 HttpException.php 阅读全文
posted @ 2019-12-20 18:39 X__cicada 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: 比如app目录下的demo应用下controller文件夹下的Test控制器的test2方法 给它设定一个路由 访问方法就是 domian/应用/hello(路由规则) <?phpuse think\facade\Route;Route::rule('test','index/demo','GET' 阅读全文
posted @ 2019-12-20 11:20 X__cicada 阅读(4145) 评论(0) 推荐(0) 编辑
摘要: config 目录下新建code.php 文件中使用 统一api返回数据 common.php新建函数 阅读全文
posted @ 2019-12-19 17:39 X__cicada 阅读(921) 评论(0) 推荐(0) 编辑
摘要: 获取参数类型转换 阅读全文
posted @ 2019-12-19 15:46 X__cicada 阅读(273) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页