update : 2015.11.03
php.shukuma.com검색:
|
maxdb_fetch_fieldmaxdb_result::fetch_field(PECL maxdb >= 1.0) maxdb_fetch_field -- maxdb_result::fetch_field — Returns the next field in the result set 설명절차식 형식 객체 기반 형식
The maxdb_fetch_field() returns the definition of one column
of a result set as an resource. Call this function repeatedly to retrieve
information about all columns in the result set.
maxdb_fetch_field() returns 반환값
Returns an resource which contains field definition information or
예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제의 출력 예시: Name: NAME Table: max. Len: 10 Flags: -1 Type: 2 Name: CNO Table: max. Len: 4 Flags: -1 Type: 0 참고
|