Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
要计算一些经度和纬度值,我需要更多的小数位,如 mysql 是可能的。
例如使用 mysql 我得到这个结果:
cos( RADIANS( 47.685618 ) ) = 0.67319814951254
使用 PHP 5.2 我只得到:
cos( deg2rad( 47.685618 ) ) = 0.673198149513
小数点后两位短,但我需要它们。
我知道我也可以使用 mysql 进行计算,但就我而言,它需要使用 PHP 来完成。
我希望你能帮帮我?谢谢。
可以更改精度指令(参见BYTES.com)。
谷歌的第二个结果:php precision float。