From 66e998f0e347ccfbc9449dea69ca66bda491d8b4 Mon Sep 17 00:00:00 2001 From: Ron Chmara Date: Sat, 26 Aug 2000 07:26:25 +0000 Subject: [PATCH] "und" != "and" (typo) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@31245 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/math.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/math.xml b/functions/math.xml index b1ed38ec82..ec92c56926 100644 --- a/functions/math.xml +++ b/functions/math.xml @@ -714,7 +714,7 @@ $binary = base_convert ($hexadecimal, 16, 2); max was range. To get the same results in these versions the short example should be mt_rand (5, 11) to get a random number - between 5 und 15. + between 5 and 15. @@ -942,7 +942,7 @@ $randval = mt_rand(); returns a pseudo-random value between 0 and RAND_MAX. If you want a random number between 5 and 15 (inclusive), for example, use rand (5, - 15). + 15). Remember to seed the random number generator before use with @@ -954,7 +954,7 @@ $randval = mt_rand(); max was range. To get the same results in these versions the short example should be rand (5, 11) to get a random number - between 5 und 15. + between 5 and 15.