mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Implemented FR #39847 (mysqli_fetch_[field|fields|field_direct] need to return db)
This commit is contained in:
parent
ee62a1a747
commit
69a3575b38
13 changed files with 82 additions and 29 deletions
|
@ -1052,6 +1052,7 @@ static void php_add_field_properties(zval *value, const MYSQL_FIELD *field TSRML
|
|||
add_property_string(value, "table",(field->table ? field->table : ""), 1);
|
||||
add_property_string(value, "orgtable",(field->org_table ? field->org_table : ""), 1);
|
||||
add_property_string(value, "def",(field->def ? field->def : ""), 1);
|
||||
add_property_string(value, "db",(field->db ? field->db : ""), 1);
|
||||
|
||||
add_property_long(value, "max_length", field->max_length);
|
||||
add_property_long(value, "length", field->length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue