一、sublime 另存爲 ALT+F 再按Aphp
二、空值 |default=''html
三、兩個時間戳 手冊位置:模型——自動時間戳html5
create_time 添加時間
update_time修改時間
四、from表單提交 提交地址,注意是get仍是post,這個很重要!!!Route::post('admin/login/check','admin/login/check'); 數據庫
<form class="well" action="{:url('admin/login/check')}" method="post">
總結先後臺交互,首先得有提交按鈕或者表單,如上面,其次創建一個路由,最後,在控制器裏面寫出方法。session
五、html5裏 隱藏屬性 type="hidden"post
六、password_hash('admin',PASSWORD_DEFAULT) ; 加密 變量1爲要加密的數據,後面的是常量,固定值this
password_verify() 解密加密
七、跳轉url
redirect裏面是路由地址
return $this->redirect("admin/index/index");
八、Session 手冊位置:雜項——sessionspa
使用方法:
//寫session use think\facade\Session; Session::set('name',$user->id);//$user->id指的是獲取數據庫裏面的值。name自定義的 //讀取session use think\facade\Session; var_dump(Session::get('name'));
//驗證session
$id = Session::get('name');
if (!$id) {
return $this->error('請先登陸',url('admin/login/index'));
}
九、傳遞php裏面的數據到view
//php代碼 $this->assign('userssss',$user); //html代碼 {$userssss->name|default=''}