When I call mysqli_field_type it returns a number, which I assume relates to the type. Does anyone have a list of types and their corresponding numbers? I am in particular trying to find out if the data type is numerical or text (if that makes a difference).
Can be useful to someone, use this function:
$type = mysqli_fetch_field_direct($result, $i)->type;
Find out more: result->fetch_field_direct
精彩评论