Thinkphp5学习015-项目案例-控制器更新密码代码
Thinkphp5学习
一.在控制器中添加Admin.php(记得首字母大写哦)
<?php
namespace appindexcontroller;
use appcommoncontrollerAdminBase;
use thinkDb;
use thinkexceptionPDOException;
use thinkSession;
/**
* 管理员控制器
* 主要实现更新密码
*/
class Admin extends AdminBase
{
//更新密码
public function updatepwd()
{
$pwd = input('newpwd');
$user = Session::get('admin');
try {
Db::name('users')->where('user',
return ['error' => false];
} catch (PDOException $ex) {
return ['error' => true];
}
}
}
二.测试一下
1.原来的数据
2.点击更改密码--》修改---》保存
3.修改完成了
===今天学习到此===