Re: Integer

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 02/01/2013 10:40 PM, Ron Piggott wrote:
> In the following the “2.” means a moderator response and “25” is the account # of the moderator.   
> 
> <?php
> 
> $author = 2.0000000000000000000000025
> 
> ?>
> 
> How can I get the 25 by itself?  
> - I want to drop the “2.” and remove all the zero’s
> 
> Would it be best to turn this into a STRING?
> 
> Any suggestions?
> 
> 
> Ron Piggott
> 
> 
> 
> www.TheVerseOfTheDay.info 
> 

Yeah needs to be a string:

$author = "2.0000000000000000000000025";

list($a, $b) = explode('.', $author);

echo (int)$a . ' ' . (int)$b;


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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux