I have to detect wheater some number can be divided with 100. About 4M times per day. So, what is quicker: 1. if($num==fun($num/100)), where fun is round/ceil/floor, or 2. if($num%100), or 3. something else... $num is int, of course TIA bojan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
- Re: [PHP] what is quicker... Bojan Gajic
- Re: [PHP] what is quicker... Mark Charette