//源代码是下面的: <?php header("Content-type: text/html; charset=gb2312"); $str="QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm0123456789"; $codenum=$str[mt_rand(0,strlen($str)-1)]; echo '<span style="color:rgb('.mt_rand(0,255).','.mt_rand(0,255).','.mt_rand(0,255).')">'.$codenum.'</span>'; ?>
请问其中最后一行RGB括号里面的'..'是什么作用?还有那个$codenum也被'..'括起来了
echo '<span style="color:rgb('..','..','..')">'.$codenum.'</span>';
Caballarii
vicentia