douwaif22244 2013-06-07 00:01
浏览 65
已采纳

使用变量outside for循环语句

i want to loop a variable and assign this variable in database i use this code

$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";    
$size = strlen( $chars );
for( $i = 0; $i < 10; $i++ ) {
    $str = $chars[ rand( 0, $size - 1 ) ];
}

if i use $str outside the for loop it will give me just 1 random character if i use it indside for loop it will give me random 10 character

how can i use this code to generate the random 10 characters ??

i tried to define the variable before loop string like this

$str = '';

but also not working for me..

  • 写回答

3条回答 默认 最新

  • douai2499 2013-06-07 00:04
    关注

    Every time you do $str = $chars[ rand( 0, $size - 1 ) ]; you are replacing $str's value. To append, or concatenate, all the generated characters use the . operator, like:

    $str .= $chars[ rand( 0, $size - 1 ) ];
    

    This is the same as doing the following:

    $str = $str . $chars[ rand( 0, $size - 1 ) ];
    

    Documentation: http://php.net/manual/en/language.operators.string.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法