这一段代码用到前不久学的三个知识点哈大家一起来研究哈

这一段代码用到最近学的三个知识点哈大家一起来研究哈

好好学习,天天奋斗
<?php
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);
}
?>
<?php
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']);
}
}
?>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<form action="#" method="post" accept-charset="utf-8">
<p><input type="text" name="phone"></p>
<p><input type="submit" name="sub" value="提交"></p>
</form>

原文地址:http://bbs.lampbrother.net/read-htm-tid-122196.html