本文主要是介绍这一段代码用到最近学的三个知识点哈大家一起来研究哈,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
好好学习,天天奋斗
<?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">
<input type="text" name="phone">
<input type="submit" name="sub" value="提交">
</form>
原文地址:http://bbs.lampbrother.net/read-htm-tid-122196.html
- 教你三招清洁家里的木地板...
- 乔布斯《我生命中的三个故事》...
- IMP-00058: ORACLE error 121...
- text段,data段,bss段,堆和栈 ...
- 有信不断满足用户需求,势打造...
- IP Sec VPN与NAT破镜重圆
- 网站导航
- GoAgent图文设置教程
- UT2.0正式版下载
- tomcat6.0配置(含配置视频下载...
- 大家都是用什么来管理hadoop集...
- 网站被人挂了吗,添加了些程序...
- Nginx如何保证不走宕机的那个...
- 大家谈谈MYSQL客户端和服务器...
- 以下代码运行后为何会输出5?...
这篇关于这一段代码用到最近学的三个知识点哈大家一起来研究哈的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!