|
pg_field_prtlenReturns the printed length Description
int pg_field_prtlen(PgSql\Result
$result , stringfalsenull $row , mixed $field_name_or_number )int pg_field_prtlen(PgSql\Result
$result , mixed $field_name_or_number )
pg_field_prtlen returns the actual printed
length (number of characters) of a specific value in a PostgreSQL
See the example given at the pg_field_name page.
Parameters
Return ValuesThe field printed length. Changelog
Examples
Example #1 Getting information about fields
The above example will output: column 0 fieldname: author printed length: 6 characters storage length: -1 bytes field type: varchar column 1 fieldname: year printed length: 4 characters storage length: 2 bytes field type: int2 column 2 fieldname: title printed length: 24 characters storage length: -1 bytes field type: varchar See Also
|