我需要使用如下变量引用对象属性:
$user = User::find( 1 );
$mobile = $user->getData( 'phone.mobile' );
对象中$ data属性的值是一个jSON数组。现在我的用户类看起来像这样:
class User extends Authenticable {
protected $fillable = [
'email',
'password',
'data',
'token',
];
protected $casts = [
'data' => 'array',
];
public function getData( $key = null ){
if( $key == null ){
// Return the entire data array if no key given
return $this->data;
}
else{
$arr_string = 'data';
$arr_key = explode( '.', $key );
foreach( $arr_key as $i => $index ){
$arr_string = $arr_string . "['" . $index . "']";
}
if( isset( $this->$arr_string ) ){
return $this->$arr_string;
}
}
return '';
}
}
上面的代码始终返回'',但$this->data['phone']['mobile']
返回存储在数据库中的实际值。
我猜我是以错误的方式引用密钥,有人指出我正确的方式来访问该值,给定字符串'phone.mobile'
答案 0 :(得分:2)
Laravel实际上有一个内置的辅助函数,用于你尝试做的名为array_get的事情:
public function getData( $key = null )
{
if ($key === null) {
return $this->data;
}
return array_get($this->data, $key);
}
有关详细信息,请参阅文档:https://laravel.com/docs/5.5/helpers#method-array-get