Doesn’t it matter if you just fill in that position?
高洛峰2017-05-16 16:50:50
The return value of the modified method will be assigned to test1. Your way of writing (an assignment operation) will return true
阿神2017-05-16 16:50:50
Assumption User
有mobile
. Pseudocode:
class User extends Model
{
public function getHiddenMobileAttribute($value)
{
return Str::substr($this->mobile,0,4).str_repeat('*',8);
}
}
echo $user->hidden_mobile;
// 156********