mysql_fetch_field和mysqli_fetch_field问题 ?

WBOY
Release: 2016-06-20 12:42:35
Original
1461 people have browsed it

大家有没有发现 这两个函数 type()方法取得值不一样,mysqli_fetch_fields取出来的是数字型标识符,mysql_fetch_fields则是字符串型,就拿取得field域是string来说吧,mysqli_fetch_fields取出来就是253,mysql_fetch_fields取出来就是string,那么问题来了,mysql在废弃的边缘,mysqli用什么方法取到字符串型的field域呢?


回复讨论(解决方案)

只是两种形式而已,253 和string 都是字符串类型。不知道你还想怎么取?

只是两种形式而已,253 和string 都是字符串类型。不知道你还想怎么取?


我写数据库备份所有表功能要用到string来拼接,只能用mysql_fetch_field方法获取,但是mysql不是说不赞成使用而且php7.0要废弃它,所以考虑有没有可替代的方法?

是的
mysql_fetch_field 返回的 type 属性是类型名
mysqli_fetch_field 返回的 type 属性是数字编号
你可以做些功课,将 类型名 与 数字编号 对应起来

但获取表字段信息应用  DESCRIBE 表名 这个指令
获取建表的 sql 指令应用  show create table 表名 这个指令

在mysql中字符串类型应该是char 或者varchar,mysql_fetch_field  返回的是string也不能直接用吧。

根据mysqli_fetch_field返回的数字编号也能拼接,你判断一下只要是253 就是字符串类型不就行了?

是的
mysql_fetch_field 返回的 type 属性是类型名
mysqli_fetch_field 返回的 type 属性是数字编号
你可以做些功课,将 类型名 与 数字编号 对应起来

但获取表字段信息应用  DESCRIBE 表名 这个指令
获取建表的 sql 指令应用  show create table 表名 这个指令


感谢两位版主,问题解决,还有show create table 这个命令很好用,受教了。

在mysql中字符串类型应该是char 或者varchar,mysql_fetch_field  返回的是string也不能直接用吧。

根据mysqli_fetch_field返回的数字编号也能拼接,你判断一下只要是253 就是字符串类型不就行了?


感谢两位版主,问题解决,的确取到string也不能直接写入sql
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!