我目前正在尝试从表中提取数据,并且正在使用它:
$online = mysqli_fetch_field(mysqli_query($db,
"SELECT `online` FROM `tbl_system` WHERE `property` = 'extranet'"));
但是,它不能作为回显$online
给“数组”。
这是来自 $online 的 var_dump
object(stdClass)#3 (11) {
["name"]=> string(6) "online"
["orgname"]=> string(6) "online"
["table"]=> string(10) "tbl_system"
["orgtable"]=> string(10) "tbl_system"
["def"]=> string(0) ""
["max_length"]=> int(1)
["length"]=> int(11)
["charsetnr"]=> int(63)
["flags"]=> int(36865)
["type"]=> int(3)
["decimals"]=> int(0) }