作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个对象数组,我需要转换为键值对,我的代码是
我有一个模型:
模型设置.php
public function currency_info(){
$currency_info = [
['code' => 'AED', 'name' => 'United Arab Emirates Dirham'],
['code' => 'ANG', 'name' => 'NL Antillian Guilder'],
['code' => 'ARS', 'name' => 'Argentine Peso'],
['code' => 'AUD', 'name' => 'Australian Dollar'],
['code' => 'BRL', 'name' => 'Brazilian Real'],
]
}
public function index()
{
$setting = new Setting();
$currency_list = $setting->currency_info();
$result = [];
foreach ($currency_list as $currency) {
$result[$currency->code] = $currency->name;
}
return $result;
}
ErrorException (E_NOTICE) Trying to get property 'code' of non-object
最佳答案
由于您尝试迭代的数据是一个数组(来自对象),符号应该是......
$result[$currency['code']] = $currency['name'];
$result = array_column($currency_list, 'name', 'code');
关于php - 如何在php中将对象数组转换为键值对,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51627309/
我是一名优秀的程序员,十分优秀!