已采纳回答 / 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
最新回答 / 喜剧收尾_
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">放到HTML中的<head></head>里面就好了
2015-06-29
已采纳回答 / fishfishmanman
__clone()方法里的两条语句是 clone 本来就有的,所以不定义__clone() 结果也是一样的。建议 改成 echo something,以免大家误会
2015-06-28
已采纳回答 / 星缘星空
是获得修改时间,它是为后面的if语句带入时间戳点。if (time() - $mtime > 3600) { // 判断戳点与修改时间的差值,是否在你设定的时间范围内 echo '<br>缓存已过期';} else { echo file_get_contents($filename);}
2015-06-28
已采纳回答 / ZHIZHIDEYEZI
<?php//设置默认时区是中国date_default_timezone_set("Asia/Shanghai");//返回2014-05-01 12:00:01的格林威治标准时间echo gmdate('Y-m-d H:i:s', strtotime('2014-05-01 12:00:01')); ?>函数什么的前面有说啊
2015-06-28