真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php查詢數(shù)據(jù)表是否存在 php判斷數(shù)據(jù)表記錄是否存在

PHP 如何查看數(shù)據(jù)庫中數(shù)據(jù)表是否存在

可以用下面的代碼查看數(shù)據(jù)庫中數(shù)據(jù)表是否存在:

我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、廣州ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的廣州網(wǎng)站制作公司

$con = mysql_connect("localhost","$username","$password");

if (!$con)

{

die('Could not connect: ' . mysql_error());

}

mysql_select_db("$datebase_name", $con);

$result = mysql_query("SELECT * FROM your_table");

while($row = mysql_fetch_array($result))

{ if(!$row){ echo "表不存在!"; } else{ echo "表存在!"; }

}

mysql_close($con);

php怎么判斷數(shù)據(jù)庫數(shù)據(jù)是否存在

?php

$data = array();

$db_name_php = 'books';

if (!mysql_connect('localhost', 'root', '123456')) {

echo '不能連接到mysql';

exit;

}

$result = mysql_query('show databases;');

While($row = mysql_fetch_assoc($result)){

$data[] = $row['Database'];

}

unset($result, $row);

mysql_close();

print_r($data);

echo 'brbr'; if (in_array(strtolower($db_name_php), $data))

echo '[',$db_name_php,']數(shù)據(jù)庫存在';

else

echo '[',$db_name_php,']數(shù)據(jù)庫不存在';

?

如何用php判斷mysql數(shù)據(jù)庫里某張表是否存在

?php

/*

查詢數(shù)據(jù)庫是否存在功能

$sql:查詢數(shù)據(jù)庫的SQL語句

$find_table:需要檢查的表名

*/

mysql_connect('localhost','root','2260375')?or?die('can\'t?not?connect?database');

if((int)check_table_is_exist('show?databases;','test')==1)

{

echo?'該表存在';

}

else?

{

echo?'該表不存在';

}

function?check_table_is_exist($sql,$find_table)

{

$row=mysql_query($sql);

$database=array();

$finddatabase=$find_table;

while?($result=mysql_fetch_array($row,MYSQL_ASSOC))

{

$database[]=$result['Database'];

}

unset($result,$row);

mysql_close();

/*開始判斷表是否存在*/

if(in_array($find_table,$database))

{

return?true;

}

else?

{

return?false;

}

}

?


文章題目:php查詢數(shù)據(jù)表是否存在 php判斷數(shù)據(jù)表記錄是否存在
網(wǎng)站路徑:http://weahome.cn/article/ddojhsc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部