On 4/28/05, Greg Donald <[EMAIL PROTECTED]> wrote:
> do {
>     $num++;
> } while( $num % 500 );

Actually that fails for the base number 500.  This works for everything:

#!/usr/bin/php
<?php

$num = isset( $_SERVER[ 'argv' ][ 1 ] )
    ? $_SERVER[ 'argv' ][ 1 ]
    : 0;

if( $num % 500 )
{
    do {
        $num++;
    } while( $num % 500 );
}
    
echo $num;

?>

> ./round.php
0

> ./round.php 499
500

> ./round.php 500
500

> ./round.php 501
1000


-- 
Greg Donald
Zend Certified Engineer
http://destiney.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to