$value = app\models\SectionTranslation::find()
->select(['section_id', 'name'])
->where(['=', 'section_id', $iSection['id']])
->andWhere(['=', 'language_id', $lang])
->one();
$nam = $value->name;
我想使用$ value->名称,但我不能。我得到“试图获取非对象的属性'名称”错误。但如果我写
var_dump($nam);exit;
在最后一行代码之后,我可以在屏幕上正确显示结果:
string(10) "Tree"
对问题或解决方案有什么看法?
谢谢你。