mysql_field_type区分varchar和text

时间:2010-06-04 00:22:35

标签: php mysql

我需要获取列的数据类型,但varchar和text数据类型都返回php中mysql_field_type函数下的值'string'。

是否有更好,更具体的方法来检查列数据类型?

2 个答案:

答案 0 :(得分:1)

您始终可以运行SHOW COLUMNS IN your_table查询(通过常规mysql_query()功能),该功能会为您提供表格列的详细信息。

答案 1 :(得分:0)

你错了,php中的mysql_field_type函数不会为'text'数据类型返回'string',而是'blob'。