需要Php功能帮助

时间:2014-02-12 06:23:09

标签: php function

所以我稍微修改了一下代码,但似乎rand()函数运行不正常为什么?下面是我的代码,下面给出了我的整个代码链接。任何帮助将不胜感激。

<tr>
  <td colspan=2 align=right>
    <font color=red>*</font>Order ID
  </td>
  <td>
    <input type='text' name='name' value='<?php echo rand();?>' disabled>
  </td>
</tr>

http://phpfiddle.org/main/code/zw7-bxp

2 个答案:

答案 0 :(得分:1)

我认为你使用的是聪明的。因此请尝试使用。

 {php}echo rand();{/php}

答案 1 :(得分:-1)

来自php-docs:

If called without the optional min, max arguments rand() returns a pseudo-random
integer between 0 and getrandmax(). If you want a random number between 5 and 15
(inclusive), for example, use rand(5, 15). 

更好用:

<tr>
    <td colspan=2 align=right>
        <font color=red>*</font>Order ID
    </td>
    <td>
        <input type='text' name='name' value='<?php echo rand(min_value, max value);?>' disabled>
    </td>
</tr>