There is no mysql_field_name in php7. How to get the attribute name specified in the mysql result set?
仅有的幸福2017-05-16 13:06:16
0
2
1157
mysqli_field_name($result,2); //email I did not find a replacement function for mysql_field_name in php7. How can I achieve the same effect? Thank you~
php7 canceled support for mysql extension
If you use mysqli, you can write like this
The mysql_ extension has been abandoned since php5.5. It has been removed since php7 and can be replaced with MySQLi or PDO_MySQL extension.