PHP Number

PHP number variable type includes integer, double.

<?PHP
$id=3;
$value=4.21;
?>

is_int(), is_double(), is_float(), is_real() functions can be used to test the variable is a number or not.

<?PHP
$id=3;
if(is_int($id)) echo "is integer";  //is iteger
else echo "not integer";
if(is_double($id)) echo "is double";
else echo "not double";    //not double
?>

number_format() function formats the number.

<?PHP
$num=1234567;
$num2=number_format($num);
echo "$num2\n";  //1,234,567
?>

mt_rand() function produces a random number. mt_srand() function set a seed for the function mt_rand(), the seed is only needed to be set once.

<?PHP
mt_srand((double)microtime() * 1000000);
$id=mt_rand(3,20); //get a number between 3 and 20
?>



:: PHP Tutorials Home ::
PHP String Functions
 • concatenation • echo
 • ereg • ereg_replace
 • explode • htmlspecialchars
 • preg_match • preg_replace
 • preg_split • print,sprintf
 • regular expr. • str_replace
 • strcmp • strpos
 • strrev • strrpos
 • strtr • substr
 • substr_replace
PHP Array Functions
 • array_diff • array_flip
 • array_intersect • array_key_exists
 • array_keys • array_merge
 • array_pop • array_push
 • array_rand • array_search
 • array_splice • array_unshift
 • array_values • asort & arsort
 • count • in_array
 • ksort • shuffle
 • sort
PHP Data Types
 • array • associative array
 • date & time • number
 • class, object • regular expression
 • string • variables
PHP Loop & Conditions
 • continue & break • for loop
 • foreach • if else
 • not equal • while
PHP File System Functions
 • copy • delete, unlink
 • dirname • download url
 • file_exists • is_file
 • mkdir • read file
 • scandir • write file
PHP Popular Topics
 • ajax • clone
 • comments • constants
 • cookie • database
 • defined • die
 • form validation • gd, draw images
 • global variables • header url
 • heredoc • mail
 • pass by reference • print
 • regular expr. • sessions
 • threads • xml parse
PHP Math Functions
 • abs • cos
 • exp • floor & ceil
 • fmod • log
 • max & min • pow
 • round • sin
 • sqrt • tan
endmemo.com © 2024  | Terms of Use | Privacy | Home