【IT168 技术】在数据库与网页集成方面,PHP是一项广泛使用的技术。PHP语言向程序员提供了一种简单的方式来与数据交互。
相关文章:
确保已经安装了PHP及其PostgreSQL模块,在Debian系统上该模块名为php5-pgsql,CentOS系统上该模块名为php-pgsql。如果是从源码编译,则编译时要带上--with-pgsql=[DIR]配置选项,DIR为postgres存放的位置。可以在php页面上使用phpinfo()函数检查是否已经打开PostgreSQL支持,以及什么选项具有什么值。注意下面的例子运行在PHP5环境下,不一定使用旧版本。
与使用C/C++相比,使用PHP打开一个与数据库的连接、查询数据并打印结果更简单容易:
<?php
$dbconn = pg_connect("host=192.168.0.101 dbname=testdb1 user=postgres password=xxx")
or die('Could not connect: ' . pg_last_error());
$query = 'SELECT * FROM mytable';
$result = pg_query($query) or die('Query failed: ' . pg_last_error());
echo "
\n";
while ($line = pg_fetch_array($result, null, PGSQL_ASSOC)) {
echo "\t
\n";
foreach ($line as $col_value) {
echo "\t\t
$col_value \n";
}
echo "\t \n";
}
echo "
\n";
//I printed the result in a nice table; thanks to the PHP manual
pg_free_result($result);
pg_close($dbconn);
?>
$dbconn = pg_connect("host=192.168.0.101 dbname=testdb1 user=postgres password=xxx")
or die('Could not connect: ' . pg_last_error());
$query = 'SELECT * FROM mytable';
$result = pg_query($query) or die('Query failed: ' . pg_last_error());
echo "
\n";
while ($line = pg_fetch_array($result, null, PGSQL_ASSOC)) {
echo "\t
\n";
foreach ($line as $col_value) {
echo "\t\t
$col_value \n";
}
echo "\t \n";
}
echo "
\n";
//I printed the result in a nice table; thanks to the PHP manual
pg_free_result($result);
pg_close($dbconn);
?>
如读者所见,连接、查询及使用结果都很简单,不过需要注意的是,当交互地使用用户名/密码信息时,可能会产生SQL注入攻击来恶意访问数据库,因此务必要特别注意可能引起的相关安全问题。
使用数组时,可以先按如下方式使用pg_fetch_array():
//假设已经连接数据库,并返回适当的(查询)结果
$arr = pg_fetch_array($result);
echo $arr[0];
$arr = pg_fetch_array($result);
echo $arr[0];
读者可以查看其他pg_fetch*函数并选择合适的函数。如果想要根据查询结果的大小改变显示的方式,则可以使用pg_num_fields和pg_num_rows两个函数。欢迎继续关注《任意编程语言访问PostgreSQL:Tcl接口》