odbc_field_scale()函数获取字段的小数位数。
int odbc_field_scale ( resource $result_id , int $field_number )
获取字段的小数位数以获取浮点数的小数位数。
以整数形式返回字段小数位数,如果出错,则返回False。
序号 | 参数和说明 |
---|---|
1 | result_id 结果标识符 |
2 | field_number 字段编号。 字段编号从1开始。 |
试试下面的实例
<?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 scale %s\n", odbc_field_name($result, $col), odbc_field_scale($result, $col)); } ?>