update : 2015.11.03
php.shukuma.com검색:
|
mysqli_result::$current_fieldmysqli_field_tell(PHP 5) mysqli_result::$current_field -- mysqli_field_tell — Get current field offset of a result pointer 설명객체 기반 형식 절차식 형식 Returns the position of the field cursor used for the last mysqli_fetch_field() call. This value can be used as an argument to mysqli_field_seek(). 반환값Returns current offset of field cursor. 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제들의 출력: Column 1: Name: Name Table: Country max. Len: 11 Flags: 1 Type: 254 Column 2: Name: SurfaceArea Table: Country max. Len: 10 Flags: 32769 Type: 4 참고
|