-
php5 图片验证码实现代码
本文是一个php5 实现的图片验证码,需要的朋友可以参考下。 GD库的函数 1,imagecreatetruecolor -----创建一个真彩色的图像 imagecreatetruecolor(int x_size,int y_size) //x表示宽,y表示高 2,imagecolorallocate 为一幅图像分配颜色(调色板) imagecolorallocate(resource image,int red,int green,int blue)//red,green,blue----三原色 3,imagestring 绘图函数 iamgestring(resource image,font,int x,int y,内容,颜色); 4,输出函数 php的header是定义头的动作,php5中支持3中类型: 1,Content-type:xxxx/yyyy 2,Location:xxxx:yyyy/zzzz 3,Status:nnn xxxxxx xxxx/yyyy表示内容文件的类型 如:image/gif image/jpeg image/pn...
PHP 2014-12-09 15:15:06 -
php连接mysql数据库代码
本文是一篇入门php mysql开发入门教材,为大家讲解的是php如何连接mysql数据库,感兴趣的同学参考下. <?php mysql_connect("localhost", "root","1981427") //连接位于localhost的服务器,用户名为root ?> <?php @mysql_connect("localhost", "root","1981427") or die("数据库服务器连接失败"); ?> <?php @mysql_connect("localhost", "root","1981427") //选择数据库之前需要先连接数据库服务器 or die("数据库服务器连接失败"); @mysql_select_db(&qu...
PHP 2014-12-09 14:39:05 -
PHP IPV6正则表达式验证代码
本文是一个PHP IPV6正则表达式验证代码,感兴趣的同学参考下。 <?php // literally from the ABNF in rfc3986 (thanks to 'WCP') function validateIPv6($IP) { return preg_match('/A (?: (?: (?:[a-f0-9]{1,4}:){6} ::(?:[a-f0-9]{1,4}:){5} (?:[a-f0-9]{1,4})?::(?:[a-f0-9]{1,4}:){4} (?:(?:[a-f0-9]{1,4}:){0,1}[a-f0-9]{1,4})?::(?:[a-f0-9]{1,4}:){3} (?:(?:[a-f0-9]{1,4}:){0,2}[a-f0-9]{1,4})?::(?:[a-f0-9]{1,4}:){2} (?:(?:[a-f0-9]{1,4}:){0,3}[a-f0-9]{1,4})?::[a-f0-9]{1,4}: (?:(?:[a-f0-9]{1,4}:){0,...
PHP 2014-12-09 13:57:11 -
php 遍历数据表数据并列表横向排列的代码
本文是一个php 遍历数据表数据并列表横向排列的示例代码,感兴趣的同学参考下. <?php $a = array (1,2,3,4,5,6,7,8,9,10,11); $i = 0; ?> <table border=1> <tr> <? foreach ($a as $k){ if($i%3==0) {//该处表示需要横向排列的列数...
PHP 2014-12-09 12:18:18 -
PHP 搜索目录文本内容的代码
本文是一个php实现的可以用来搜索指定目 录下文件的方法代码,感兴趣的同学参考下。 这个类可以用来搜索在给定的文本目录中的文件...
PHP 2014-12-09 12:06:10 -
php 生成随机验证码图片代码
本文 是一个php实现的生成验证码图片类,感兴趣的同学参考下。 <?php /** 默认首页 **/ class DefaultController extends AppController { public function index() { $len = 5; $str = "ABCDEFGHIJKLNMPQRSTUVWXYZ123456789"; $im = imagecreatetruecolor ( 70, 20 ); $bgc = imagecolorallocate($im, 255, 255, 255); $bgtxt = imagecolorallocate($im, 220, 220, 220); //随机调色板 $colors = array( imagecolorallocate($im, 255, 0, 0), imagecolorallocate($im, 0, 200, 0), imagecolorallocate($im, 0, 0, 255), imagecoloralloc...
PHP 2014-12-09 11:00:04 -
php 分页类 扩展代码
本文是一个php实现的分页类示例代码,感兴趣的同学参考下. <?php /** * 功能: 分页类,根据提供的数据总量和页面大小 */ class pagination { var $result = array(); var $pVar = "myp";//page参数分页记数 var $urlParamStr = ""; //页面的所有参数 var $sqlMoveNumber = 0; //数据的偏移量 var $is_post = false; public function pagination() { }...
PHP 2014-12-09 09:45:03 -
php 过滤危险html代码
本文是一个php实现的可以用来过滤前端用户输入的危险代码的函数,感兴趣的同学参考下. #用户发布的html,过滤危险代码 function uh($str) { $farr = array( "/s+/", //过滤多余的空白 "/<(/?)(scripti?framestylehtmlbodytitlelinkmeta?%)([^>]*?)>/isU", //过滤 <script 等可能引入恶意内容或恶意改变显示布局的代码,如果不需要插入flash等,还可以加入<object的过滤 "/(<[^>]*)on[a-zA-Z]+s*=([^>]*>)/isU", //过滤javascript的on事件 ); $tarr = array( " ", "<\1\2\3>", //如果要直接清除不安全的标签,这里可以留空 "\1\2", ); $str = preg_replace( $fa...
PHP 2014-12-09 09:42:03 -
php download.php实现代码 跳转到下载文件(response.redirect)
本文是一个php 实现的download.php实现代码 跳转到下载文件(response.redirect),使用的是php中的header函数,感兴趣的同学参考下. 跳转核心代码实现。 if (isset($link)) { Header("HTTP/1.1 303 See Other"); &n...
PHP 2014-12-09 08:03:03 -
PHP 柱状图实现代码
本文是一个php实现的 柱状图示例代码,利用imagefilledrectugle的函数来画出矩形,实现柱状图,具体的代码里面都加入了详细的注释。感兴趣的同学参考下. 效果图: <?php function createImage($data,$twidth,$tspace,$height){ header("Content-Type:image/jpeg"); $dataname = array(); $datavalue = array();//data里面的值 $i = 0; $j = 0; $k = 0; $num = sizeof($data); foreach($data as $key => $val){ $dataname[] = $key; $datavalue[] = $val; } $width = $num * ($twidth + $tspace) + 20 ;//获取图像的宽度 $im = imagecreate($width,$height);//创建图像 ...
PHP 2014-12-09 07:18:10 -
php不用内置函数对数组排序的两个算法代码
本文是二个php实现的不用内置函数,实现数级排序功能的函数方法,感兴趣的同学参考下。 一朋友找工作遇到的试题,备注一下...
PHP 2014-12-09 07:09:03