odbc_field_len()函數(shù)獲取字段的長(zhǎng)度(精度)
int odbc_field_len ( resource $result_id , int $field_number )
它用來(lái)獲取一個(gè)字段的長(zhǎng)度
返回字段長(zhǎng)度,如果出錯(cuò),則返回False。
序號(hào) | 參數(shù)和說(shuō)明 |
---|---|
1 | result_id 結(jié)果標(biāo)識(shí)符。 |
2 | field_number 字段編號(hào)。 字段編號(hào)從1開(kāi)始。 |
試試下面的實(shí)例
<?php $input_ID = odbc_connect("DSN","user_id","pass_id"); $sql = "SELECT * FROM Products"; $result = odbc_exec($input_ID, $sql); odbc_fetch_row($result); for ($col = 1; $col<=odbc_num_fields($result); $col++) { printf("Column %s has length %s\n", odbc_field_name($result, $col), odbc_field_len($result, $col)); } ?>