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.
私はphp出力14.85を持っています.14.50と14.47の場合は14.90にしたいと思います。ラウンド関数を試していますが、正しい数値形式が得られません。可能ですか?
ありがとう
number_format(round($var, 1), 2)トリックを行う必要があります。
number_format(round($var, 1), 2)
ほとんどのプログラミング言語と同様にceil()、floor()またはround()
ceil()
floor()
round()