Mysql利用Describe呼吁判定字段是否存在

mysql_connect('localhost', 'root', 'root'); mysql_select_db('demo'); $test = mysql_query('Describe cdb_posts first'); $test = mysql_fetch_array($test);

$test[0]返回的是该字段的名称,好比我要查询first字段,返回的就是first

假如此字段不存在返回的就是NULL,通过这样可以判定一个字段是否存在

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/8371.html