update : 2015.11.03
php.shukuma.com검색:
|
mysql_field_type(PHP 4, PHP 5) mysql_field_type — 결과로부터 특정 필드의 데이터 형(type) 정보를 반환 설명
string mysql_field_type
( resource
$result
, int $field_offset
)mysql_field_type()는 mysql_field_name()와 사용자에게 돌려주는 값의 형태가 비슷하다. 인수
반환값반환되는 필드 형태는 "int", "real", "string", "blob", 그리고 » MySQL 문서에 설명되어 있는 데이터형 중 하나이다. 예제
Example #1 mysql_field_type() 예제
<?php 위 예제의 출력 예시: Your 'func' table has 4 fields and 1 record(s) The table has the following fields: string name 64 not_null primary_key binary int ret 1 not_null string dl 128 not_null string type 9 not_null enum 주의
|