|
mysql_field_type結果において指定したフィールドの型を取得する 警告
この拡張モジュールは PHP 5.5.0 で非推奨になり、PHP 7.0.0 で削除されました。 MySQLi あるいは PDO_MySQL を使うべきです。詳細な情報は MySQL: API の選択 を参照ください。 この関数の代替として、これらが使えます。
説明
string mysql_field_type(resource
$result , int $field_offset )mysql_field_type は、 mysql_field_name 関数に似ています。 引数は同じですが、この関数ではフィールドの型が返されます。 パラメータ
戻り値
返されるフィールド型は
例
例1 mysql_field_type の例
上の例の出力は、 たとえば以下のようになります。 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 注意
参考
|