我正在尝试获取表格的列 description
我尝试了fetch_fields()
但它没有获取描述(只是名称,类型,长度......)
$finfo = $result->fetch_fields();
foreach ($finfo as $val) {
if (in_array($val->name, $columns['names'])){
$ths .= '<th scope="col" id="'.$val->name.'">'.$val->name. '</th>';
}
}