摘要: <?php//递归转义多维数组function my_addslashes($value){ if (empty($value)){ return $value; } else { return is_array($value) ? array_map("my... 阅读全文
posted @ 2015-03-23 22:14 雪山飞猪 阅读(308) 评论(0) 推荐(0)
摘要: <?php$rand_bg_file = './captcha/a.jpg';//设置背景地址$img = imagecreatefromjpeg($rand_bg_file);//创建画布$white = imagecolorallocate($img, 0xff, 0xff, 0xff);//绘... 阅读全文
posted @ 2015-03-23 20:06 雪山飞猪 阅读(177) 评论(0) 推荐(0)