只应在php中随机添加整数

时间:2015-04-19 05:11:38

标签: php

我正在使用php,现在我遇到了问题

我的PHP代码是:

<?php
    $random= rand (1,5)."Boys";     
    $random2= rand (1,5)."Girls";       
    $random3=$random.$random2;
    imagettftext($jpg_image, 25, 0, 10,20, $white, $font_path, $random);
    imagettftext($jpg_image, 25, 0, 100,200, $white, $font_path, $random2);
    imagettftext($jpg_image, 25, 0, 275, 50, $white, $font_path,$random3);
?>

我没有给出完整的编码,但是我会向你解释我现在获得随机数和固定文本的概念,如男孩或女孩现在在$random3我只想要显示由$random$random2随机给出的整数之和,以便帮助我。

1 个答案:

答案 0 :(得分:2)

你的php文件需要进行一些编辑。

<?php
$random= rand (1,5)."Boys";     
$random2= rand (1,5)."Girls";       
$random3=($random+$random2);
imagettftext($jpg_image, 25, 0, 10,20, $white, $font_path, $random);
imagettftext($jpg_image, 25, 0, 100,200, $white, $font_path, $random2);
imagettftext($jpg_image, 25, 0, 275, 50, $white, $font_path,$random3);
?>

现在它会正常工作。我纠正了它。