Searched refs:fp4 (Results 1 – 2 of 2) sorted by relevance
/PHP-7.2/ext/mysqlnd/ |
H A D | mysql_float_to_double.h | 39 static inline double mysql_float_to_double(float fp4, int decimals) { in mysql_float_to_double() argument 43 php_gcvt(fp4, FLT_DIG, '.', 'e', num_buf); in mysql_float_to_double() 45 php_sprintf(num_buf, "%.*f", decimals, fp4); in mysql_float_to_double()
|
/PHP-7.2/ext/mysqli/tests/ |
H A D | bug67839.phpt | 25 …if (!mysqli_query($link, "CREATE TABLE test(id INT PRIMARY KEY, fp4 FLOAT, fp8 DOUBLE) ENGINE = In… 31 if (!mysqli_query($link, "INSERT INTO test(id, fp4, fp8) VALUES (1, 9.9999, 9.9999)")) { 36 if (!($stmt = mysqli_prepare($link, "SELECT id, fp4, fp8 FROM test"))) { 42 $fp4 = null; 45 if (!mysqli_stmt_bind_result($stmt, $id, $fp4, $fp8)) { 61 print $id . ": " . $fp4 . ": " . $fp8 . "\n";
|
Completed in 7 milliseconds