|
PHP5中文手册
pg_field_table(PHP 5 >= 5.2.0) pg_field_table — Returns the name or oid of the tables field 说明
mixed pg_field_table
( resource $result
, int $field_number
[, bool $oid_only
] )
pg_field_table() returns the name of the table that field belongs to, or the table's oid if oid_only is TRUE. 参数
返回值On success either the fields table name or oid. Or, FALSE on failure. 范例
Example#1 Getting table information about a field
<?php 上例的输出类似于:
注释
|