人人人妻人人人妻人人人,99精品国产综合久久久久五月天 ,欧美白人最猛性XXXXX,日韩AV无码免费播放

News新聞

業(yè)界新聞動(dòng)態(tài)、技術(shù)前沿
Who are we?

您的位置:首頁(yè)      樂(lè)道系統(tǒng)FAQ      php mysql_list_dbs()函數(shù)用法示例

php mysql_list_dbs()函數(shù)用法示例

標(biāo)簽: 發(fā)布日期:2017-03-29 00:00:00 241

本文實(shí)例講述了php mysql_list_dbs()函數(shù)用法。分享給大家供大家參考,具體如下:

mysql_list_dbs()函數(shù)

定義:列出MySQL服務(wù)器中所有的數(shù)據(jù)庫(kù)

$conn=@mysql_connect("localhost","root","admin")or die(mysql_error());
$db=mysql_list_dbs($conn);
while($result=mysql_fetch_object($db)){
  echo $result->Database."<br>";
}