位置: 编程技术 - 正文
推荐整理分享PHP:pg_field_name()的用法_PostgreSQL函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4 >= 4.2.0, PHP 5)
pg_field_name — 返回字段的名字
说明 string pg_field_name ( resource $result , int $field_number )pg_field_name() 返回给定 PostgreSQL result 资源中的 field_number 所代表的字段名。字段编号从 0 开始。
Example #1 获取字段信息
<?php$dbconn=pg_connect("dbname=publisher")ordie("Couldnotconnect");$res=pg_query($dbconn,"select*fromauthorswhereauthor='Orwell'");$i=pg_num_fields($res);for($j=0;$j<$i;$j++){echo"column$jn";$fieldname=pg_field_name($res,$j);echo"fieldname:$fieldnamen";echo"printedlength:".pg_field_prtlen($res,$fieldname)."charactersn";echo"storagelength:".pg_field_size($res,$j)."bytesn";echo"fieldtype:".pg_field_type($res,$j)."nn";}?>上例的输出如下:
Note:
本函数以前的名字为 pg_fieldname()。
参见 pg_field_num()。
PHP:pg_field_is_null()的用法_PostgreSQL函数 pg_field_is_null(PHP4=4.2.0,PHP5)pg_field_is_null测试字段是否为NULL说明intpg_field_is_null(resource$result,int$row,mixed$field)pg_field_is_null()测试字段是否为NULL。如果字段在给
PHP:pg_fetch_row()的用法_PostgreSQL函数 pg_fetch_row(PHP4,PHP5)pg_fetch_row提取一行作为枚举数组说明arraypg_fetch_row(resource$result[,int$row])pg_fetch_row()根据指定的result资源提取一行数据(记录)作为数组
PHP:pg_fetch_result()的用法_PostgreSQL函数 pg_fetch_result(PHP4=4.2.0,PHP5)pg_fetch_result从结果资源中返回值说明mixedpg_fetch_result(resource$result,int$row,mixed$field)pg_fetch_result()根据由pg_query()返回的result资源返回
标签: PHP:pg_field_name()的用法_PostgreSQL函数
本文链接地址:https://www.jiuchutong.com/biancheng/281494.html 转载请保留说明!上一篇:PHP:pg_field_num()的用法_PostgreSQL函数
下一篇:PHP:pg_field_is_null()的用法_PostgreSQL函数
友情链接: 武汉网站建设