1.服务容器
- bind() : 是向容器中绑定服务对象.
- make() : 是从容器中取出对象.
$text = new Container();
$text->bind('服务对象名字',function (){
return new 服务对象类();
});
$text->bind('STU',function (){
return new Student();
});
$SMS = $message->make('STU');
2.密码加密和加密盐
拼接密码和加密盐 : generateHashPassword( 密码, 加密盐);
(1).生成加密盐:
protected function generateSalt()
{
$chars = array_merge(range('A', 'Z'), range('a', 'z'), range('0', '9'));
$str = '';
for ($i = 0; $i < 4; $i++) {
$str .= $chars[mt_rand(0, count($chars) - 1)];
}
return $str;
}
(2).合成密码:
function generateHashPassword($password, $salt)
{
return md5(sha1($password) . $salt);
}
$insert['pass_salt'] = $this->generateSalt();
$insert['user_pass'] = generateHashPassword($insert['user_pass'], $insert['pass_salt']);
3.缓存
(1)缓存路径:
storage/framework/cache/
(2)缓存方法:
Cache::put('key1','val1',10);
Cache::forget('key1');
$data = Cache::pull('key1');
4.数组
(1)方法:
-
array_column ():用于将数组中相同键的一列值合并到一起组成一个新的数组 -
array_multisort (参数1,参数2,参数3) 函数对多个数组或多维数组进行排序。 参数中的数组被当成一个表的列并以行来进行排序 - 这类似 SQL 的 ORDER BY 子句的功能。 参数1 : 必需 规定数组
参数2 : 可选 规定排列顺序 SORT_ASC - 默认。按升序排列 (A-Z)。SORT_DESC - 按降序排列 (Z-A)。
参数3 : 可选 规定数组
5.默认地址
(1)业务需求:
当我们遇到网上购物业务时,总会出现购物地址选择是否设置默认地址这个业务,我们不论是添加地址,还是修改地址都需要在仓库中设置判断数据库是否有设置过默认地址的数据,有就要将其修改.
>1.添加功能
public function store($request)
{
if ($request['default'] == 1){
$res = $this->model->where('default',1)->first();
if (isset($res)){
$update['default'] = 2;
$this->model->where('default',1)->update($update);
}
}
$insert = [];
foreach ($this->model->getFillable() as $v){
if (isset($request[$v])){
$insert[$v] = $request[$v];
}
}
return $this->model->insert($insert) ? $this->result(0,'添加成功') : $this->result(-1,'添加失败');
}
>2.修改功能
public function save($request, $id)
{
if ($request['default'] == 1){
$res = $this->model->where('default',1)->first();
if (isset($res)){
$update['default'] = 2;
$this->model->where('default',1)->update($update);
}
}
$update = [];
foreach ($this->model->getFillable() as $v){
if (isset($request[$v])){
$update[$v] = $request[$v];
}
}
return $this->model->where('id',$id)->update($update) ? $this->result(0,'修改成功') : $this->result(-1,'修改失败');
}
|