abs

(PHP 4, PHP 5)

absAbsolute value

Description

number abs ( mixed $number )

Returns the absolute value of number.

Parameters

number

The numeric value to process

Return Values

The absolute value of number. If the argument number is of type float, the return type is also float, otherwise it is integer (as float usually has a bigger value range than integer).

Examples

Example #1 abs() example

<?php
$abs 
abs(-4.2); // $abs = 4.2; (double/float)
$abs2 abs(5);   // $abs2 = 5; (integer)
$abs3 abs(-5);  // $abs3 = 5; (integer)
?>

See Also

Коментарии

<?php
echo 'PHP '.PHP_VERSION.'<br>';

$qty 1000;
$arr = array();
for (
$i 0$i $qty$i++){
   
$arr[] = rand(-100100);
}

$start microtime(true);
for (
$i 0$i $qty$i++){
    foreach (
$arr as $v){
       
$v abs($v);
    }
}
echo 
number_format(microtime(true) - $start4).'<br>';

$start microtime(true);
for (
$i 0$i $qty$i++){
    foreach (
$arr as $v){
        if (
$v 0$v abs($v);
    }
}
echo 
number_format(microtime(true) - $start4).'<br>';

$start microtime(true);
for (
$i 0$i $qty$i++){
    foreach (
$arr as $v){
        if (
$v 0$v *= -1;
    }
}
echo 
number_format(microtime(true) - $start4).'<br>';
?>
Result:
PHP 7.1.33
0.0910
0.0710
0.0550

Conclusion: better to check before using the feature that the number is less than zero. Even better use multiplication by -1 than this function.
2021-03-03 10:19:45
http://php5.kiev.ua/manual/ru/function.abs.html

    Поддержать сайт на родительском проекте КГБ