Note that for some reason the length of fields is 3 times the actual value if you are using UTF8 encoding.. So a varchar(10) field returns 30 here. This renders this function almost useless.
(PHP 4, PHP 5)
mysql_field_len — 指定したフィールドの長さを返す
この拡張モジュールは PHP 5.5.0 で非推奨になり、PHP 7.0.0 で削除されました。 MySQLi あるいは PDO_MySQL を使うべきです。詳細な情報は MySQL: API の選択 を参照ください。 この関数の代替として、これらが使えます。
mysql_field_len()は指定したフィールドの長さを 返します。
result
評価された結果 リソース。この結果は、mysql_query() のコールにより得られたものです。
field_offset
数値フィールドオフセット。field_offset
は 0
から始まります。field_offset
が存在しない場合、E_WARNING
レベルのエラーが発行されます。
成功した場合には指定したフィールドの長さ、失敗した場合に false
を返します。
例1 mysql_field_len() の例
<?php
$result = mysql_query("SELECT id,email FROM people WHERE id = '42'");
if (!$result) {
echo 'Could not run query: ' . mysql_error();
exit;
}
// データベーススキーマで定義されている、id フィールドの
// 長さを取得する
$length = mysql_field_len($result, 0);
echo $length;
?>
注意:
下位互換のために、次の非推奨別名を使用してもいいでしょう。 mysql_fieldlen()
Note that for some reason the length of fields is 3 times the actual value if you are using UTF8 encoding.. So a varchar(10) field returns 30 here. This renders this function almost useless.
For a mysql type DECIMAL(8,4), the length is returned as 10 (M+2 as per documentation).