我有一个从存储在对象$ result中的SQL Server数据库中检索到的记录数组。我想访问数组对象中的每个项目并将其打印到屏幕上。我怎样才能做到这一点?我的尝试低于
$result = $DB->get_records_sql("SELECT rawname, ID FROM mdl_tag where tagType = 'institution'");
$result = array();
foreach ($result as $ $value) {
echo $value;
);
}
答案 0 :(得分:1)
这是正确的代码:
// Get results from table 'tag', where 'tagtype' matches 'institution', with no sorting and returning fields 'id' and 'rawname'.
$results = $DB->get_records('tag', ['tagtype' => 'institution'], '', 'id, rawname');
foreach ($results as $value) {
echo $value->rawname;
}
所以,有很多问题: