PHP导出Mysql成.sql文件
来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 08:53 点击:次
php代码:
01.<?php
02.
03.$database=test;//数据库名
04.
05.$options=array(
06.
07. hostname => localhost,//ip地址
08.
09. charset => utf-8,//编码
10.
11. filename => $database..sql,//文件名
12.
13. username => root,
14.
15. password => 123123
16.
17.);
18.
19.mysql_connect($options[hostname],$options[username],$options[password])or die("不能连接数据库!");
20.
21.mysql_select_db($database) or die("数据库名称错误!");
22.
23.mysql_query("SET NAMES {$options[charset]}");
24.
25.$tables = list_tables($database);
26.
27.$filename = sprintf($options[filename],$database
02.
03.$database=test;//数据库名
04.
05.$options=array(
06.
07. hostname => localhost,//ip地址
08.
09. charset => utf-8,//编码
10.
11. filename => $database..sql,//文件名
12.
13. username => root,
14.
15. password => 123123
16.
17.);
18.
19.mysql_connect($options[hostname],$options[username],$options[password])or die("不能连接数据库!");
20.
21.mysql_select_db($database) or die("数据库名称错误!");
22.
23.mysql_query("SET NAMES {$options[charset]}");
24.
25.$tables = list_tables($database);
26.
27.$filename = sprintf($options[filename],$database
相关新闻>>
- 发表评论
-
- 最新评论 更多>>