怎么创造php文件,如何实现PHP自动创建数据库?
你做好程序以后,把数据库导出成sql文件
1、连接数据库
2、读取这个sql文件里的sql语句,并执行
3、生成一个数据库连接参数的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 {
//数据库连接
protected $connect = null;
//数据库对象
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;
//连接数据库
$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语句数组
public function GetSqlArr() {
//去除注释
$str = $this->sqlFile;
$str = preg_replace('/--.*/i', '', $str);
$str = preg_replace('/\/\*.*\*\/(\;)?/i', '', $str);
//去除空格 创建数组
$str = explode(";\n", $str);
foreach ($str as $v) {
$v = trim($v);
if (empty($v)) {
continue;
} else {
$this->sqlArr[] = $v;
}
}
}
//执行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!";
}
?>
indexphp是什么文件?
index.php是一个用PHP语言开发的网站的首页,index是普遍意义上的“首页”,也就是你输入一个域名后会打开一个页面,基本上就是index.xxxx
PHP即“超文本预处理器”,是一种通用开源脚本语言。PHP是在服务器端执行的脚本语言,与C语言类似,是常用的网站编程语言。PHP独特的语法混合了C、Java、Perl以及 PHP 自创的语法。利于学习,使用广泛,主要适用于Web开发领域。
说说写好的PHP代码如何在wampserver上怎么运行?
:在wampserver的www目录下简历demo1文件,在demo1文件夹文件下建立index.php然后通过浏览器访问localhost/demo1/index.php即可
phpstudy小皮面板怎么运行php程序?
把你的项目放到www文件夹下,然后在你的虚拟主机设置中配置好项目和地址即可访问程序
phpstorm如何创建新项目?
phpstorm中创建新项目的方法:
1、打开phpstorm工具;
2、点击菜单栏的“File”并打开“new project”新建项目界面;
3、在弹出的窗中输入项目名、项目路径以及类型,并点击下一步;
4、选择一个php语言版本,进入下一步;
5、最后点击“this window”在当前窗口打开新建的项目即可。
具体操作步骤:
1、打开phpstorm软件,在左上角找到【file】,点击进入下拉菜单中的【new project】,进入下一步。
2、弹出一个对话框,我们输入我们的项目名称,项目地址,还有项目类型。
3、根据我们的项目,选择一个适合我们的php语言版本。
4、点击this window 在当前窗口打开,这个随你便 ,你也可以选择后面的新窗口。
5、项目搭建好了,我们在项目下创建一个文件。
6、到这我们的项目就搭建完成了。