52で呼び出すときに55を返すphp関数が必要です。
round()
関数を試しました:
echo round(94, -1); // 90
9が返されますが、95が必要です。
ありがとう。
これは、好みの丸め規則に応じて、いくつかの方法で実現できます。
動作:50出力55、52出力55
function roundUpToAny($n,$x=5) {
return round(($n+$x/2)/$x)*$x;
}
動作:50出力50、52出力55、50.25出力5
function roundUpToAny($n,$x=5) {
return (round($n)%$x === 0) ? round($n) : round(($n+$x/2)/$x)*$x;
}
動作:50出力50、52出力55、50.25出力55
function roundUpToAny($n,$x=5) {
return (ceil($n)%$x === 0) ? ceil($n) : round(($n+$x/2)/$x)*$x;
}
round()
(またはceil()
常に切り上げたい場合)値5(解像度/粒度)は何でも構いません—ステップ1と3の両方で置き換えられます
切り捨て:
$x = floor($x/5) * 5;
切り上げする:
$x = ceil($x/5) * 5;
最も近い値に丸める(上または下):
$x = round($x/5) * 5;
私が書いたこの小さな機能を試してください。
function ceilFive($number) {
$div = floor($number / 5);
$mod = $number % 5;
If ($mod > 0) $add = 5;
Else $add = 0;
return $div * 5 + $add;
}
echo ceilFive(52);
echo $value - ($value % 5);
私はそれが古い質問であることを知っていますが、モジュラス演算子を使用する私見が最良の方法であり、受け入れられた答えよりもはるかにエレガントです。
ギア ライブラリから
MathType::roundStep(50, 5); // 50
MathType::roundStep(52, 5); // 50
MathType::roundStep(53, 5); // 55
MathType::floorStep(50, 5); // 50
MathType::floorStep(52, 5); // 50
MathType::floorStep(53, 5); // 50
MathType::ceilStep(50, 5); // 50
MathType::ceilStep(52, 5); // 55
MathType::ceilStep(53, 5); // 55
ソース:
public static function roundStep($value, int $step = 1)
{
return round($value / $step) * $step;
}
public static function floorStep($value, int $step = 1)
{
return floor($value / $step) * $step;
}
public static function ceilStep($value, int $step = 1)
{
return ceil($value / $step) * $step;
}
私はこのようにします:
private function roundUpToAny(int $n, $x = 9)
{
return (floor($n / 10) * 10) + $x;
}
テスト:
assert($this->roundUpToAny(0, 9) == 9);
assert($this->roundUpToAny(1, 9) == 9);
assert($this->roundUpToAny(2, 9) == 9);
assert($this->roundUpToAny(3, 9) == 9);
assert($this->roundUpToAny(4, 9) == 9);
assert($this->roundUpToAny(5, 9) == 9);
assert($this->roundUpToAny(6, 9) == 9);
assert($this->roundUpToAny(7, 9) == 9);
assert($this->roundUpToAny(8, 9) == 9);
assert($this->roundUpToAny(9, 9) == 9);
assert($this->roundUpToAny(10, 9) == 19);
assert($this->roundUpToAny(11, 9) == 19);
assert($this->roundUpToAny(12, 9) == 19);
assert($this->roundUpToAny(13, 9) == 19);
assert($this->roundUpToAny(14, 9) == 19);
assert($this->roundUpToAny(15, 9) == 19);
assert($this->roundUpToAny(16, 9) == 19);
assert($this->roundUpToAny(17, 9) == 19);
assert($this->roundUpToAny(18, 9) == 19);
assert($this->roundUpToAny(19, 9) == 19);
Musthafa's 関数の私のバージョンです。これはより複雑ですが、フロート番号と整数のサポートがあります。丸める数値は文字列にすることもできます。
/**
* @desc This function will round up a number to the nearest rounding number specified.
* @param $n (Integer || Float) Required -> The original number. Ex. $n = 5.7;
* @param $x (Integer) Optional -> The nearest number to round up to. The default value is 5. Ex. $x = 3;
* @return (Integer) The original number rounded up to the nearest rounding number.
*/
function rounduptoany ($n, $x = 5) {
//If the original number is an integer and is a multiple of
//the "nearest rounding number", return it without change.
if ((intval($n) == $n) && (!is_float(intval($n) / $x))) {
return intval($n);
}
//If the original number is a float or if this integer is
//not a multiple of the "nearest rounding number", do the
//rounding up.
else {
return round(($n + $x / 2) / $x) * $x;
}
}
Knight 、 Musthafa 、および Praesagus からの提案も試してみました。彼らはフロート番号をサポートしておらず、 Musthafa's & Praesagus からの解決策はいくつかの番号で正しく動作しません。次のテスト番号を試して、自分で比較してください。
$x= 5;
$n= 200; // D = 200 K = 200 M = 200 P = 205
$n= 205; // D = 205 K = 205 M = 205 P = 210
$n= 200.50; // D = 205 K = 200 M = 200.5 P = 205.5
$n= '210.50'; // D = 215 K = 210 M = 210.5 P = 215.5
$n= 201; // D = 205 K = 205 M = 200 P = 205
$n= 202; // D = 205 K = 205 M = 200 P = 205
$n= 203; // D = 205 K = 205 M = 205 P = 205
** D = DrupalFever K = Knight M = Musthafa P = Praesagus
2で乗算し、-1に丸め、2で除算します。
おそらく、この1つのライナーを検討することもできます。速い! $num >= 0
および$factor > 0
。
$num = 52;
$factor = 55;
$roundedNum = $num + $factor - 1 - ($num + $factor - 1) % $factor;
あちこちで見つけた多くの結果に基づいて、この関数を20分で書きました。なぜ機能するのか、どのように機能するのかわかりません!! :D
私は主に、通貨コードをこの151431.1 LBPから150000.0 LBPに変換することに興味がありました。 (151431.1 LBP ==〜100 USD)これは今のところ完璧に機能しますが、他の通貨や数字となんらかの互換性を持たせようとしましたが、うまく機能するかどうかはわかりません!!
/**
* Example:
* Input = 151431.1 >> return = 150000.0
* Input = 17204.13 >> return = 17000.0
* Input = 2358.533 >> return = 2350.0
* Input = 129.2421 >> return = 125.0
* Input = 12.16434 >> return = 10.0
*
* @param $value
* @param int $modBase
*
* @return float
*/
private function currenciesBeautifier($value, int $modBase = 5)
{
// round the value to the nearest
$roundedValue = round($value);
// count the number of digits before the dot
$count = strlen((int)str_replace('.', '', $roundedValue));
// remove 3 to get how many zeros to add the mod base
$numberOfZeros = $count - 3;
// add the zeros to the mod base
$mod = str_pad($modBase, $numberOfZeros + 1, '0', STR_PAD_RIGHT);
// do the magic
return $roundedValue - ($roundedValue % $mod);
}
修正して、何か問題があれば修正してください。
function round_up($n, $x = 5) {
$rem = $n % $x;
if ($rem < 3)
return $n - $rem;
else
return $n - $rem + $x;
}