首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

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

2012-08-26 
这一段代码用到最近学的三个知识点哈大家一起来研究哈好好学习,天天奋斗?phpfunction imgphone($width,$h

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

好好学习,天天奋斗
<?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

热点排行