RE: [PHP] Mod function

2002-01-18 Thread Jon Haworth
> I am looking for a mod() function in PHP but unfortunately I am unable to find one. > Please help... As in modulus? if ($foo % 2 == 0) { // if there's no remainder after dividing by 2 } if ($foo % 5 != 0) { // if there is a remainder after dividing by 5 } HTH Jon -- PHP General Mail

[PHP] Mod function

2002-01-18 Thread Jim
I am looking for a mod() function in PHP but unfortunately I am unable to find one. Please help... ( °> Jim-Christian Flatin //\\ Skien / Norway / \/ ) [EMAIL PROTECTED] '-<< http://niteshift.d2g.com

Re: [PHP] Mod-function?

2001-09-09 Thread Jon Thompson Coon
> It is an operator in PHP: % > > ie. echo 3 % 2; > > -Rasmus > > On Sat, 8 Sep 2001, Ville Mattila wrote: Eli jakojäännös (modulo) lasku. PHP:ssä voi tulla ongelmia oikeiden vastausten kanssa, kun se muuttelee muuttujatyyppiä tarvittaessa. Eli kokonaisluvuista reaaleja jne. Kannattaa tarkistaa,

Re: [PHP] Mod-function?

2001-09-08 Thread Rasmus Lerdorf
It is an operator in PHP: % ie. echo 3 % 2; -Rasmus On Sat, 8 Sep 2001, Ville Mattila wrote: > Hi folks, > > I found this kind of formulae which should calculate the distance between two points >on earth: > > tc1=mod(atan2(sin(lon1-lon2)*cos(lat2), >cos(lat1)*sin(lat2)-sin(lat1)*c

[PHP] Mod-function?

2001-09-08 Thread Ville Mattila
Hi folks, I found this kind of formulae which should calculate the distance between two points on earth: tc1=mod(atan2(sin(lon1-lon2)*cos(lat2), cos(lat1)*sin(lat2)-sin(lat1)*cos(lat2)*cos(lon1-lon2)), 2*pi) This is not PHP code, but now I would need the same formulae in PHP. But I