php查询数据表字段名 php查询一条记录( 二 )


$map['a'] =array('like',array('%thinkphp%','%tp'),'OR');$map['b'] =array('notlike',array('%thinkphp%','%tp'),'AND'); (a like '%thinkphp%' OR a like '%tp') AND (b not like '%thinkphp%' AND b not like '%tp')
本文来自ThinkPHP框架技术文章栏目:

php5以上版本,怎样查找数据库中表名 , 以及表名中有哪些字段名?mysql_list_tables 在php5应该支持php查询数据表字段名的php查询数据表字段名,再说php查询数据表字段名,向下兼容php查询数据表字段名的啊帮助文档php查询数据表字段名:例 1397. mysql_list_tables() 例子/b?php
$dbname = 'mysql_dbname';
if (!mysql_connect('mysql_host', 'mysql_user', 'mysql_password')) {
print 'Could not connect to mysql';
exit;
}
$result = mysql_list_tables($dbname);
if (!$result) {
print "DB Error, could not list tables\n";
print 'MySQL Error: ' . mysql_error();
exit;
}
while ($row = mysql_fetch_row($result)) {
print "Table: $row[0]\n";
}
mysql_free_result($result);
?
PHP中怎样获取字段的名称?$con = mysql_connect('localhost','root','');
if($con){
mysql_query('use yatibang');
mysql_query('set names utf8');
}else{
echo "数据连接失败";
}
【php查询数据表字段名 php查询一条记录】$sql = "desc app_category";
$res = mysql_query($sql);
$row = $rows = array();
while( $row = mysql_fetch_assoc($res)){
$rows[] = $row['Field'];
}
var_dump($rows);
返回结果如下:
关于php查询数据表字段名和php查询一条记录的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

推荐阅读