On 16.09.2017 at 15:40, AshleySheridan wrote: > On Sat, 2017-09-16 at 16:36 +0300, Michelle Konzack wrote: > >> What is the easiest method to convert a Float to Integer? >> >> I have (only) to get rid of anything after the decimal point. > > There are a few ways: > > $int = intval($float); > $int = (int)$float; > $int = floor($float); It might be appropriate to point out that the latter has different results than the former two, if $float is a negative non-integral value, and that floor() returns a float. -- Christoph M. Becker -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php