摘要: 如果能让自己对学习上瘾,那学习该是多快乐,会变得多快。 总结一下学习笔记: 阅读全文
posted @ 2017-12-28 19:03 一轮明月随潮涌 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 连接数据库:(用php) $host = "127.0.0.1"; $user = “root”; $password="password"; $database = "users"; $conn =mysqli_connect($host,$user,$password,$database); 阅读全文
posted @ 2017-12-28 18:59 一轮明月随潮涌 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 做查询功能时,输入的关键词有的为空,有的有值,如何实现多功能查询呢?这里介绍一种方法。(基于laravel) 原理很简单,第一步:判断接收的值,第二步:写查询语句。具体实现如下: //首先,创建句柄: $handle = DB::table('classrooms'); 阅读全文
posted @ 2017-12-28 18:49 一轮明月随潮涌 阅读(4522) 评论(1) 推荐(1) 编辑
摘要: 1、array_search() 2、in_array() 3、array_key_exists() array_key_exists() 与 isset() 的对比 isset() 对于数组中为 NULL 的值不会返回 TRUE,而 array_key_exists() 会。 阅读全文
posted @ 2017-12-28 18:27 一轮明月随潮涌 阅读(5034) 评论(0) 推荐(0) 编辑
摘要: 1、报错:MethodNotAllowedHttpException/ 2、Status Code: 500 Internal Server Error 一般是后台代码错误 阅读全文
posted @ 2017-12-28 10:26 一轮明月随潮涌 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 报错:NotFoundHttpException 这种一般都是路由配置错误 阅读全文
posted @ 2017-12-28 10:17 一轮明月随潮涌 阅读(729) 评论(0) 推荐(0) 编辑
摘要: 1、token 2、form 阅读全文
posted @ 2017-12-28 09:56 一轮明月随潮涌 阅读(117) 评论(0) 推荐(0) 编辑