Windows 下 pear 的安装
1. 首先安装运行php的环境
2. 在php目录下面有一个go-pear.bat的文件,运行!
3. 之后php目录下面会出现一个pear.bat批处理文件。
4. 运行pear.bat文件,运行命令下载安装相应的模块即可。
1. Pear downloda package 下载包
2. Pear install package 安装包
3. Pear uninstall package 删除包
实例
<?php
// connect
require_once('DB.php');
$db_host = "localhost";
$db_user = "root";
$db_passwd = "root";
$db_dbName = "test";
$PersistentConnection = 1 ;
$db_type ="mysql";
$db_proto ="";
$db_options="";
$db=DB::connect("$db_type://$db_user:$db_passwd@$db_host/$db_dbName",$db_options);
if (DB::iserror($db)) {
die($db->getMessage( ));
}
// issue the query
$sql = "SELECT * FROM students";
$q = $db->query($sql);
if (DB::iserror($q)) {
die($q->getMessage( ));
}
// generate the table
while ($q->fetchInto($row)) {
?>
<tr><td><?= $row[0] ?></td>
<td><?= $row[1] ?></td>
<td><?= $row[2] ?></td>
</tr>
<?php
}
?>
放到web目录下面即可。
可能会遇到的疑惑
1. Require("db.php"), 但是在我们web目录下面,并没有相应的文件?
可以在php目录下在的tmp/db下面找到。