创建数值数组的时候,默认数组的键是从0开始的,所以可以使用array('苹果');,也可以把键显示出来,用array('0'=>'苹果');
2015-07-03
$str = preg_replace('/\w+.\w+/i', '<em>$0</em>', $str);
echo $str;
echo $str;
2015-07-02
已采纳回答 / Rainy_
<?php$img = imagecreatetruecolor(100, 40);$black = imagecolorallocate($img, 0x00, 0x00, 0x00);$green = imagecolorallocate($img, 0x00, 0xFF, 0x00);$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);imagefill($img,0,0,$white);//生成随机的验证码$code = '';for($i...
2015-06-30