update : 2015.11.03
php.shukuma.com검색:
|
maxdb_field_tellmaxdb_result::current_field(PECL maxdb >= 1.0) maxdb_field_tell -- maxdb_result::current_field — Get current field offset of a result pointer 설명절차식 형식
int maxdb_field_tell
( resource
$result
)객체 기반 형식 int $maxdb_result->current_field;
Returns the position of the field cursor used for the last maxdb_fetch_field() call. This value can be used as an argument to maxdb_field_seek(). 반환값Returns current offset of field cursor. 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제의 출력 예시: Column 1: Name: NAME Table: max. Len: 10 Flags: -1 Type: 2 Column 2: Name: CNO Table: max. Len: 4 Flags: -1 Type: 0 참고
|