update : 2015.11.03
php.shukuma.com검색:
|
pg_field_size(PHP 4 >= 4.2.0, PHP 5) pg_field_size — Returns the internal storage size of the named field 설명
int pg_field_size
( resource
$result
, int $field_number
)
pg_field_size() returns the internal storage
size (in bytes) of the field number in the given PostgreSQL
인수
반환값
The internal field storage size (in bytes). -1 indicates a variable
length field. 예제
Example #1 Getting information about fields
<?php 위 예제의 출력: 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 참고
|