位置: 编程技术 - 正文
推荐整理分享PHP:pg_fetch_assoc()的用法_PostgreSQL函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4 >= 4.3.0, PHP 5)
pg_fetch_assoc — 提取一行作为关联数组
说明 array pg_fetch_assoc ( resource $result [, int $row ] )pg_fetch_assoc() 和调用 pg_fetch_array() 加上第三个可选参数 PGSQL_ASSOC 是等价的。它只返回一个关联数组。如果需要数字索引,用 pg_fetch_row()。
pg_fetch_assoc() 是 pg_fetch_row() 的扩展版本。除了将数据存储在数字索引(字段编号)之外,默认还将数组存储在关联索引(字段名)中。
row 是要被提取的行(记录)编号。第一行为 0。
pg_fetch_assoc() 并不明显比 pg_fetch_row() 慢,而且还显著更便于使用。
Example #1 pg_fetch_assoc() 例子
<?php$conn=pg_pconnect("dbname=publisher");if(!$conn){echo"Anerroroccured.n";exit;}$result=pg_query($conn,"SELECTid,author,emailFROMauthors");if(!$result){echo"Anerroroccured.n";exit;}while($row=pg_fetch_assoc($result)){echo$row['id'];echo$row['author'];echo$row['email'];}?>参见 pg_fetch_row(),pg_fetch_array(),pg_fetch_object() 和 pg_fetch_result()。
PHP:pg_fetch_all()的用法_PostgreSQL函数 pg_fetch_all(PHP4=4.3.0,PHP5)pg_fetch_all从结果中提取所有行作为一个数组说明arraypg_fetch_all(resource$result)pg_fetch_all()从结果资源中返回一个包含有所有的行(元组
PHP:pg_fetch_all_columns()的用法_PostgreSQL函数 pg_fetch_all_columns(PHP5=5.1.0)pg_fetch_all_columnsFetchesallrowsinaparticularresultcolumnasanarray说明arraypg_fetch_all_columns(resource$result[,int$column=0])pg_fetch_all_columns()returnsanarrayt
PHP:pg_execute()的用法_PostgreSQL函数 pg_execute(PHP5=5.1.0)pg_executeSendsarequesttoexecuteapreparedstatementwithgivenparameters,andwaitsfortheresult.说明resourcepg_execute([resource$connection],string$stmtname,array$params)Sendsareque
标签: PHP:pg_fetch_assoc()的用法_PostgreSQL函数
本文链接地址:https://www.jiuchutong.com/biancheng/281500.html 转载请保留说明!友情链接: 武汉网站建设