Re: intval

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

 



k i ended up with this code....

<?php

$_POST = array( '1', '100', '100.1', '100.123', 'a');

foreach( $_POST as &$value )
{
	if(is_numeric($value)) {
		$value = $value + 0;
	}
}
var_dump($_POST);

?>

its giving me
array(5) { [0]=>  int(1) [1]=>  int(100) [2]=>  float(100.1) [3]=>
float(100.123) [4]=>  &string(1) "a" }
what does &string mean ??

-- 
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