Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1539936
  • 博文数量: 1481
  • 博客积分: 26784
  • 博客等级: 上将
  • 技术积分: 17045
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-12 09:22
文章分类

全部博文(1481)

文章存档

2014年(10)

2013年(353)

2012年(700)

2011年(418)

分类: 系统运维

2012-08-08 09:31:53

好好学习,天天奋斗
function imgphone($width,$height,$char) {
$im=imagecreate($width,$height);
imagecolorallocate($im,eee,eee,eee);
$red=imagecolorallocate($im,255,0,0);
imagettftext($im,14,-4,4,19,$red,"simsun.ttc",$char);
header("content-type:image/png");
imagepng($im);
imagedestroy($im);
}
?>
header("content-type:text/html;charset-utf-8");
$aa="/\d{11}/";
if($_POST['sub']) {
if(preg_match($aa,$_POST['phone'])) {
imgphone(200,60,$_POST['phone']);
}
}
?>




原文地址:

阅读(152) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~