-
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 -
五款PHP代码重构工具推荐
本文为大家介绍了五款优秀的PHP代码重构工具,以帮助你完善更加优秀的项目。感兴趣的朋友可以好好研究一下 在软件工程学里,重构代码一词通常是指在不改变代码的外部行为情况下而修改源代码...
PHP 2014-12-09 06:45:03 -
PHP实现的域名whois查询的代码
本文是一个php实现的可以用来进行whois查询的代码示例,数据来自万网、新网,数据也比较权威,需要的朋友可以参考下。 万网 whois(使用的接口为万网提供合法接口) function whois_hichina($domain) { preg_match("|<pre>(.+?)</pre>|is", @file_get_contents('http://whois.hichina.com/cgi-bin/whois?domain='.$domain.''), $whois); $whois[0] = str_replace('友情提示:按注册局要求,过期域名可能会处于注册商自动续费期阶段,您在此查询所看到的域名到期日仅供参考<br />请您<a href="http://www.net.cn/has_client/userlogon/user_logon1.asp" target="_blank" class="l...
PHP 2014-12-09 06:42:02 -
php获取网页中的图片并保存到本地的代码
本文是一个php实现的抓取 远程网页,并把其中的图片下载保存到本地的代码,感兴趣的同学参考下。 <?php header("Content-type:image/jpeg"); function read_url($str) { $file=fopen($str,"r"); while(!feof($file)) { $result.=fgets($file,9999); } fclose($file); return $result; } function save_img($str) { $result=read_url($str); $result=str_replace(""","",$result); $result=str_replace("'","",$result); preg_match_all('/<imgssrc=(http://.*?)(s(.*?)&...
PHP 2014-12-09 06:27:03 -
PHP 压缩文件夹的类代码
本文是一个PHP实现的可以用来 压缩文件夹的类代码示例,需要的朋友可以参考下。 <?php /* $Id: PHPZip.php */ class PHPZip { var $datasec = array(); var $ctrl_dir = array(); var $eof_ctrl_dir = "x50x4bx05x06x00x00x00x00"; var $old_offset = 0; function Zip($dir, $zipfilename) { if (@function_exists('gzcompress')) { @set_time_limit("0"); $this->openFile($dir,$dir); $out = $this -> filezip(); $fp = fopen($zipfilename, "w"); fwrite($fp, $out, strlen($out)); fclose($fp); } ...
PHP 2014-12-09 04:57:04 -
PHP 图形验证码示例代码
本文是一个php写的图形验证码示例代码,感兴趣的同学参考下。 效果: myvcode.class.php:封装创建验证码的类 <?php /* * file:myvcode.class.php * 验证码类,类名Vcode */ class Vcode { private $width; /*验证码宽度*/ private $height; /*验证码高度*/ private $codeNum; /*验证码字符个数*/ private $checkCode; &...
PHP 2014-12-09 04:18:08