downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

getrandmax> <floor
[edit] Last updated: Fri, 26 Apr 2013

view this page in

fmod

(PHP 4 >= 4.2.0, PHP 5)

fmodReturns the floating point remainder (modulo) of the division of the arguments

Description

float fmod ( float $x , float $y )

Returns the floating point remainder of dividing the dividend (x) by the divisor (y). The reminder (r) is defined as: x = i * y + r, for some integer i. If y is non-zero, r has the same sign as x and a magnitude less than the magnitude of y.

Parameters

x

The dividend

y

The divisor

Return Values

The floating point remainder of x/y

Examples

Example #1 Using fmod()

<?php
$x 
5.7;
$y 1.3;
$r fmod($x$y);
// $r equals 0.5, because 4 * 1.3 + 0.5 = 5.7
?>



getrandmax> <floor
[edit] Last updated: Fri, 26 Apr 2013
 
add a note add a note User Contributed Notes fmod - [20 notes]
up
2
cory at lavacube dot net
7 years ago
A more formal way for generating duration strings:

<?php

function duration( $int_seconds=0, $if_reached=null )
{
   
$key_suffix = 's';
   
$periods = array(
                   
'year'        => 31556926,
                   
'month'        => 2629743,
                   
'day'        => 86400,
                   
'hour'        => 3600,
                   
'minute'    => 60,
                   
'second'    => 1
                   
);

   
// used to hide 0's in higher periods
   
$flag_hide_zero = true;

   
// do the loop thang
   
foreach( $periods as $key => $length )
    {
       
// calculate
       
$temp = floor( $int_seconds / $length );

       
// determine if temp qualifies to be passed to output
       
if( !$flag_hide_zero || $temp > 0 )
        {
           
// store in an array
           
$build[] = $temp.' '.$key.($temp!=1?'s':null);

           
// set flag to false, to allow 0's in lower periods
           
$flag_hide_zero = false;
        }

       
// get the remainder of seconds
       
$int_seconds = fmod($int_seconds, $length);
    }

   
// return output, if !empty, implode into string, else output $if_reached
   
return ( !empty($build)?implode(', ', $build):$if_reached );
}

?>

Simple use:
<?php

   
echo duration( mktime(0, 0, 0, 1, 1, date('Y')+1) - time(), 'Some fancy message to output if duration is already met...' );

?>

Enjoy. :-)
up
1
dePijd
3 years ago
This class ran through several unit tests and fixes all failures found in bugs.php.net

<?php
abstract class MyNumber {
    public static function
isZero($number, $precision = 0.0000000001)
    {
       
$precision = abs($precision);
        return -
$precision < (float)$number && (float)$number < $precision;
    }
    public static function
isEqual($number1, $number2)
    {
        return
self::isZero($number1 - $number2);
    }
    public static function
fmod($number1, $number2)
    {
       
$rest = fmod($number1, $number2);
        if (
self::isEqual($rest, $number2)) {
            return
0.0;
        }
        if (
mb_strpos($number1, ".") === false) {
           
$decimals1 = 0;
        } else {
           
$decimals1 = mb_strlen($number1) - mb_strpos($number1, ".") - 1;
        }
        if (
mb_strpos($number2, ".") === false) {
           
$decimals2 = 0;
        } else {
           
$decimals2 = mb_strlen($number2) - mb_strpos($number2, ".") - 1;
        }
        return (float)
round($rest, max($decimals1, $decimals2));
    }
}
?>
up
1
SnakeEater251
7 years ago
Note on the code given by cory at lavacube dot net.
You will recieve better results by not using floor and using round instead. As you continue increasing to larger amounts of time you will notice that the outputted time is off by large amounts.

so instead of $temp = floor( $int_seconds / $length );
we would use  $temp = round( $int_seconds / $length );

<?php

function duration( $int_seconds=0, $if_reached=null )
{
  
$key_suffix = 's';
  
$periods = array(
                  
'year'        => 31556926,
                  
'month'        => 2629743,
                  
'day'        => 86400,
                  
'hour'        => 3600,
                  
'minute'    => 60,
                  
'second'    => 1
                  
);

  
// used to hide 0's in higher periods
  
$flag_hide_zero = true;

  
// do the loop thang
  
foreach( $periods as $key => $length )
   {
      
// calculate
      
$temp = round( $int_seconds / $length );

      
// determine if temp qualifies to be passed to output
      
if( !$flag_hide_zero || $temp > 0 )
       {
          
// store in an array
          
$build[] = $temp.' '.$key.($temp!=1?'s':null);

          
// set flag to false, to allow 0's in lower periods
          
$flag_hide_zero = false;
       }

      
// get the remainder of seconds
      
$int_seconds = fmod($int_seconds, $length);
   }

  
// return output, if !empty, implode into string, else output $if_reached
  
return ( !empty($build)?implode(', ', $build):$if_reached );
}

?>
up
1
picaune at hotmail dot com
10 years ago
NAN (.net Equivalent = Double.NaN) means "Not-a-Number".
Some ways to get NaN are modulo 0, and square root of 0.
up
2
cory at lavacube dot net
7 years ago
I don't believe that is correct.

Try this out using your patch:
<?php

echo duration( mktime(0, 0, 0, 1, 0, 2006)-time() );

?>

As of right now, this will read:
1 month, 22 days, 24 hours, 49 minutes, 15 seconds

Which is completely incorrect. Seeing as how it is the 9th of December.

The real real flaw here is how the 'year' and 'month' periods are calculated. As most months vary in length...

Thank you very much SnakeEater251 for pointing this out.

The quickest way to get slightly more accurate results, is to use averages based on one "true" year, which is 365.25 days.

Change the year and month to:
      'year'       => 31557600, // one 'true year' (365.25 days)
      'month'    => 2629800, // one 'true year' divided by 12 :-)

I will work on developing a true fix, for pin-point accuracy. ;-)

 - Cory Christison
up
1
linkboss at gmail dot com
3 years ago
You can also use the modulo operator '%', which returns the same result :

<?php
$var1
= 5;
$var2 = 2;

echo
$var1 % $var2; //Returns 1
echo fmod($var1,$var2); //Returns the same
?>
up
1
konstantin at rekk dot de
8 years ago
If you need to reduce an integer to zero if zero and 1 if not, you can use

$sign = (integer)(boolean)$integer;

instead of

$sign = $integer > 0 ? 1 : 0;

it is faster from 100 operations on (at least on my machine).
up
1
alex at xelam dot net
9 years ago
Integer Modulo

If you want the remainder of the division of two Integers rather than Floats, use "%"; eg:

<?php
$a
= 4;
$b = 3;

print(
$a % $b);
?>

Will output "1".
up
1
rocan
8 years ago
john at digitizelife dot com:

Well not sure how your comment applys to fmod..

but their is a sure simpler way of coping with situations like this..

its called a bit field (bit masking)
 
e.g.

/* Categories */
bin     dec   cat
0001 - 1 - Blue
0010 - 2 - Red
0100 - 4 - Green 
1000 - 8 - Yellow

/* Permissions */
0010 - 2   - Bob
0101 - 5    - John
1011 - 11  - Steve
1111-  15 - Mary

to find out the permissions for each user you simple need to do a bitwise AND 

$steve_auth=11;

function get_perm($auth)
{
    $cats["Blue"]=1;
    $cats["Red"]=2;
    $cats["Green"]=4;
    $cats["Yellow"]=8;
    $perms=array();
    foreach($cats as $perm=>$catNum)
    {
          if($auth & $catNum)
                $perms[$perm]=true;

    }

    return $perms;
}

print_r(get_perm($steve_auth));
/*
returns
Array
(
    [Blue] => 1
    [Red] => 1
    [Yellow] => 1
)
*/

This is far simpler than your prime number idea, in fact you dont even need a function in any tests for the permmsions on a user you can do them directly using the bitwise and operator.

You may want to read the following

http://en.wikipedia.org/wiki/Bitmask
http://uk2.php.net/manual/en/language.operators.bitwise.php
up
0
verdy_p
4 months ago
Note that fmod is NOT equivalent to this basic function:

<?php
 
function modulo($a, $b) {
    return
$a - $b * floor($a / $b);
 }
?>

because fmod() will return a value with the same sign as $a. In other words the floor() function is not correct as it rounds towards -INF instead of towards zero.

To emulate fmod($a, $b) the correct way is:

<?php
 
function fmod($a, $b) {
   return
$a - $b * (($b < 0) ? ceil($a / $b) : floor($a / $b)));
 }
?>

Note that both functions will throw a DIVISION BY ZERO if $b is null.

The first function modulo() above is the mathematical function which is useful for working on cyclic structures (such as calender computions or trignonometric functions :

- fmod($a, 2*PI) returns a value in [0..2*PI) if $a is positive
- fmod($a, 2*PI) returns a value in [-2*PI..0] if $a is negative
- modulo($a, 2*PI) returns a value always in [0..2*PI) independantly of the sign of $a
up
0
matrebatre
4 years ago
I always use this:

function modulo($n,$b) {
return $n-$b*floor($n/$b);
}

And it appears to work correctly.
up
0
ysangkok at gmail dot com
5 years ago
Please note that this:
<?php
function custom_modulo($var1, $var2) {
 
$tmp = $var1/$var2;

  return (float) (
$var1 - ( ( (int) ($tmp) ) * $var2 ) );
}

$par1 = 1;
$par2 = 0.2;

echo
"fmod:          ";
var_dump(fmod ( $par1 , $par2 ));
echo
"custom_modulo: ";
var_dump(custom_modulo ( $par1 , $par2 ));
?>

gives this:

fmod:          float(0.2)
custom_modulo: float(0)

Fmod does not deliver the desired result, therefore I made my own.
up
0
sam dot fullman at verizon
8 years ago
This function behaves wierd in negative regions.  If you have something like an angle that goes through 360 degress of rotation and your angle goes negative, then fmod of -1 should be 359, right?

Here's a way to get that result, so that you get a phase shift vs. just a "negative fmod":

$h= -30; //same as 330 degrees

//handle negative
if($h<0){
    while(true){
        $fail++; if($fail>100)break; //in case loop gets tied up
        $h+=360;
        if($h>=0)break;
    }
}
$h=fmod($h,360);

echo $h;  //will say 330 degrees - we phase shifted up until positive.
up
-2
jphansen at uga dot edu
8 years ago
fmod() does not mirror a calculator's mod function. For example, fmod(.25, .05) will return .05 instead of 0 due to floor(). Using the aforementioned example, you may get 0 by replacing floor() with round() in a custom fmod().

<?
function fmod_round($x, $y) {
    $i = round($x / $y);
    return $x - $i * $y;
}

var_dump(fmod(.25, .05)); // float(0.05)
var_dump(fmod_round(.25, .05)); // float(0)
?>
up
0
cory at simplesystems dot ca
7 years ago
Just a note on the previous note by Ryan Means:

Instead of using explode() to get the number before the decimal point, would be to use floor()... floor() rounds fractions down, which is exactly what is needed.

His same example using floor();

<?PHP
$totalsec
=XXXXXXX; //Replace the X's with a int value of seconds

$daysarray = floor( $totalsec/86400 );

$partdays = fmod($totalsec, 86400);
$hours = floor( $partdays/3600 );

$parthours = fmod($partdays, 3600);
$min = floor( $parthours/60 );

$sec = fmod($parthours, 60);

echo
"days " . $days . "<br>";
echo
"hours " . $hours . "<br>";
echo
"minutes " . $min . "<br>";
echo
"seconds " . $sec . "<br>";
?>
up
0
Ryan Means
7 years ago
If your given a number of seconds and you want to turn it into Days, hours, minutes, and seconds:
(this is very useful when using the Unix Time Epoch to find the difference from one time to the other)

For Example:
I posted in a bb at one date.. when I post a Unix Time Epoch was marked..
Then When I go back and view it again 2 weeks later I generate the Unix Time Epoch for the current time.
Then take the current time - the posting time, this gives the number of seconds since the post.
Then use the below equations to get days, hours, minutes, and seconds since the post was made:

<?PHP
$totalsec
=XXXXXXX; //Replace the X's with a int value of seconds

$daysarray = explode(".", ($totalsec/86400));
$days = $daysarray[0];

$partdays = fmod($totalsec, 86400);
$hoursarray = explode(".", ($partdays/3600));
$hours = $hoursarray[0];

$parthours = fmod($partdays, 3600);
$minarray = explode(".", ($parthours/60));
$min = $minarray[0];

$sec = fmod($parthours, 60);

echo
"days " . $days . "<br>";
echo
"hours " . $hours . "<br>";
echo
"minutes " . $min . "<br>";
echo
"seconds " . $sec . "<br>";
?>
up
-1
Clifford dot ct at gmail dot com
8 months ago
The fmod() function is useful as the integer modulus operator (%) is limited in its range of precision.

Making the assumption that any operator has arbitrary precision is not portable.

I created a sample code here and ran it off a random virtual server.  Do note the output may vary according to your environment but it is sufficient to illustrate the possible gotchas.

<?php

$checksum
= crc32("The quick brown fox jumped over the lazy dog.");

$divisor = 256;

$a = sprintf("%u", $checksum);
echo
"sprintf crc32 output a = $a, to divide by $divisor\n";

$r = $a % $divisor;
echo
"% operator: r = $r \n";

$r = intval(fmod($a, $divisor));
echo
"fmod function: r = $r \n";

$r = bcmod($a, $divisor);
echo
"bcmod function: r = $r \n";

?>

Output:

sprintf crc32 output a = 2191738434, to divide by 256
% operator: r = 255
fmod function: r = 66
bcmod function: r = 66

Conclusion:

Integer arithmetic operators do not have the precision to work correctly in some applications.  In such situations, fmod() can be used in place of the modulus (%) operator.
up
-2
john at digitizelife dot com
8 years ago
In the process of writing an authentication process for my software, I came across the need for a permissions function. Basically, I wanted to use prime numbers to indicate a specified permission 'group' or 'category'. For example, the categories could be asigned a prime number as follows;

/* Categories */
2 - Blue
3 - Red
5 - Green
7 - Yellow

Then, a permission level can be assigned to a user as follows;

/* Permissions */
3 - Bob
10 - John
42 - Steve
210 - Mary

Using the prime number assigned to the specified category, you can specify access to each category by multiplying the allowed categories together. For example, Bob only has access to Red, whereas Steve has access to Red, Blue and Yellow.

Only prime numbers work because the resulting permission number can only be devided evenly by 1, itself, and one of the prime numbers. So, a script can be written to look for the multiples of the permission number. Here is what I came up with;

function get_perm($auth) {

    /* initialize variables */
    $perm = array();
    $count = 0;

    for ($x = 1; $x <= $auth; $x++) {
        $result = $auth / $x;
        if (!ereg("[.]", $result)) { // is whole number
            $n = 0;
            for ($y = 1; $y <= $x; $y++) {
                $result = $x / $y;
                if (!ereg("[.]", $result)) { // is whole number
                    $n++;
                }
            }
            if ($n == 2) {
                $count++;
                $perm[$count] = $x;
            }
        }
    }
    return($perm);
}

The function starts by looking for multiples of $auth (the given authorization number [42]). Then it checks to see if that multiple is prime. If it is, the script inserts the value into array $perm.

When called, the function will return the array of permissions for the given authorization number. For example;

$auth = 42;

$perm = get_perm($auth);

$perm will now contain the numbers; 2, 3, 7 since 2*3*7=42. The values can be parsed by using a simple loop.

/* count number of permisions */
$count = count($perm);

/* print permisions */
while ($count > 0) {
    echo "$perm[$count]<br>";
    $count--;
}

If there is a more simple way to acheive the previous results, please feel free to comment (and e-mail me). I orignally thought PHP was able to do this simply by mod($auth). However, I was wrong.
up
-2
fjeanson at yahoo dot com
10 years ago
For those of you still using PHP 4.1.X and below.. fmod is not available. You can easily check if a variable a multiple of 2 by doing the following which is compatible with 4.1.X and below:

$var; //variable to check if multiple of 2 or not

$stype = gettype($var/2); //returns the type of the result.
if($stype == "integer"){
    echo "$var is a multiple of two! Yay!";
} else {
    echo "$var is NOT a multiple of two! Yay, I guess!";
}

since 3/2 = 1.5 its a float..
4/2 = 2 its an integer..

$stype will be equal to "double" if the variable is a float.. for historical reasons.

voila.
up
-3
Jon
9 years ago
for those w/o fmod, here is q lil' add-on function you can use to replicate it:

function fmodAddOn($x,$y)
{
        $i = floor($x/$y);

        // r = x - i * y
        return $x - $i*$y;
}

 
show source | credits | stats | sitemap | contact | advertising | mirror sites