你做好程序以后,把數(shù)據(jù)庫導出成sql文件
創(chuàng)新互聯(lián)公司科技有限公司專業(yè)互聯(lián)網(wǎng)基礎服務商,為您提供成都電信服務器托管,高防物理服務器租用,成都IDC機房托管,成都主機托管等互聯(lián)網(wǎng)服務。
1、連接數(shù)據(jù)庫
2、讀取這個sql文件里的sql語句,并執(zhí)行
3、生成一個數(shù)據(jù)庫連接參數(shù)的php文件
?php
$con?=?mysql_connect("localhost","peter","abc123");
if?(!$con)
{
die('Could?not?connect:?'?.?mysql_error());
}
if?(mysql_query("CREATE?DATABASE?my_db",$con))
{
echo?"Database?created";
}
else
{
echo?"Error?creating?database:?"?.?mysql_error();
}
mysql_close($con);
?
?php
class?ReadSql?{
//數(shù)據(jù)庫連接
protected?$connect?=?null;
//數(shù)據(jù)庫對象
protected?$db?=?null;
//sql文件
public?$sqlFile?=?"";
//sql語句集
public?$sqlArr?=?array();
public?function?__construct($host,?$user,?$pw,?$db_name)?{
$host?=?empty($host)???C("DB_HOST")?:?$host;
$user?=?empty($user)???C("DB_USER")?:?$user;
$pw?=?empty($pw)???C("DB_PWD")?:?$pw;
$db_name?=?empty($db_name)???C("DB_NAME")?:?$db_name;
//連接數(shù)據(jù)庫
$this-connect?=?mysql_connect($host,?$user,?$pw)?or?die("Could?not?connect:?"?.?mysql_error());
$this-db?=?mysql_select_db($db_name,?$this-connect)?or?die("Yon?can?not?select?the?table:"?.?mysql_error());
}
//導入sql文件
public?function?Import($url)?{
$this-sqlFile?=?file_get_contents($url);
if?(!$this-sqlFile)?{
exit("打開文件錯誤");
}?else?{
$this-GetSqlArr();
if?($this-Runsql())?{
return?true;
}
}
}
//獲取sql語句數(shù)組
public?function?GetSqlArr()?{
//去除注釋
$str?=?$this-sqlFile;
$str?=?preg_replace('/--.*/i',?'',?$str);
$str?=?preg_replace('/\/\*.*\*\/(\;)?/i',?'',?$str);
//去除空格?創(chuàng)建數(shù)組
$str?=?explode(";\n",?$str);
foreach?($str?as?$v)?{
$v?=?trim($v);
if?(empty($v))?{
continue;
}?else?{
$this-sqlArr[]?=?$v;
}
}
}
//執(zhí)行sql文件
public?function?RunSql()?{
foreach?($this-sqlArr?as?$k?=?$v)?{
if?(!mysql_query($v))?{
exit("sql語句錯誤:第"?.?$k?.?"行"?.?mysql_error());
}
}
return?true;
}
}
//范例:
header("Content-type:text/html;charset=utf-8");
$sql?=?new?ReadSql("localhost",?"root",?"",?"log_db");
$rst?=?$sql-Import("./log_db.sql");
if?($rst)?{
echo?"Success!";
}
?
《PHP基礎視頻》百度網(wǎng)盤資源免費下載
鏈接:
提取碼:cykj
PHP基礎視頻|day7_視頻|day6_視頻|day5_視頻|day4_視頻|day3_視頻|day2-視頻|day1 視頻|學習求助或資源索取,請加Q2885620350.txt|對應筆記 PPT 模板 源碼下載地址.zip|PHP學習路線圖更新說明.txt|2017黑馬PHP珍貴學習資源.zip|9-將PHP作為模塊提供給Apache加載.wmv|8-安裝PHP.wmv|7-http指令.wmv ?
可以參看discuz數(shù)據(jù)庫表帖子,和帖子附件的設計,我的大概思路是這樣的:
首先建立一個數(shù)據(jù)表"film"用來保存簡短文字信息,其中包含:電影發(fā)布時有名字,主演,簡介,歸屬欄目,發(fā)布電影的URL鏈接。在創(chuàng)建一個表(考慮到是小型網(wǎng)站,如果中型的話,可以選擇10個,像discuz一樣)"attachement",用來保存,上傳截圖,上傳視頻。這個表用一個外鍵與film表連接。中間在外鍵上加索引。
希望我的回答對你有幫助!
mysql_select_db("table"
,conn)
or
die
("找不到數(shù)據(jù)源");
-----------------------------------------------------------------------
通過PHP創(chuàng)建MYSQL數(shù)據(jù)庫
conn
=
mysql_connect("localhost","root","password")
or
die("無法連接數(shù)據(jù)庫");
mysql_create_db("dwww")
or
die("無法創(chuàng)建數(shù)據(jù)庫");
sqlstr
=
"create
database
other_dwww";
----------------------------------------------------------------------------
創(chuàng)建mysql的表
conn
=
mysql_connect("localhost","root","password")
or
die("無法連接數(shù)據(jù)庫");
mysql_select_db("dwww",conn)
or
die("無法連接數(shù)據(jù)庫dwww");
sql
=
"create
table
dwww_table(
//判斷數(shù)組
colors
=
array(red,
blue,
green);
if(is_array(colors))
{
print(colors
is
an
array.br);
}
//雙精度數(shù)判斷
Temperature
=
15.23;
if(is_double(TemperatuPHP在線視頻教程
PHP視頻教程打包下載php自學視頻教程
PHP100視頻教程
PHP視頻教程,LAMP視頻教程PHP從入門到精通視頻教程
PHP+MYSQL網(wǎng)站設計入門實踐
PHP100視頻教程DVD光盤-第二季
PHP?