php 948

#PHP
PHP原比例生成缩略图

<?php $image = "jiequ.jpg"; // 原图 $imgstream = file_get_contents($image); $im…

2015-01-17 256

#PHP
http请求处理PHP类

/** * http请求处理类(基于CURL进行封装) * * @author Xiwei Ye * @version $Id$ */ class cls_http_request…

2015-01-14 975

#PHP
PHP的AES加密类

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -…

2015-01-14 987

#PHP
php数据库备份脚本

// 备份数据库 $host = "localhost"; $user = "root"; //数据库账号 $password = &quo…

2015-01-14 167

#PHP
Postgresql DB的访问PHP类

/** * The generic DB access Class, Entry of all DB Access * Only PG is supported -- 201210…

2015-01-14 181

#PHP
使用 PHP 限制下载速度

// local file that should be send to the client $local_file = 'test-file.zip'; // filename…

2015-01-14 897

#PHP
简单好用的PHP验证码类

/** * @PHP验证码类 * 使用方法: * $image=new Captcha(); * $image->config('宽度','高度','字符个数','验证码se…

2015-01-13 161

#PHP
PHP缩略图类

define('ROOT','D:/Program Files/www/test/'); class Gd_Thumbnail_Tool{ protected static $im…

2015-01-13 536

#PHP
php批量去除bom的代码

if (isset($_GET['dir'])){ //设置文件目录 $basedir=$_GET['dir']; }else{ $basedir = '.'; } $auto =…

2015-01-13 787

#PHP
php防御XSS攻击

function remove_xss($val) { // remove all non-printable characters. CR(0a) and LF(0b) and …

2015-01-13 799

#PHP
PHP汉字转换拼音类

PHP汉字转换拼音 本文地址:http://bbs.it-home.org/thread-28985-1-1.html 内容来源:程序员之家(http://bbs.it-home.…

2015-01-13 1,013

#PHP
强大的PHP加密解密类

class Ender{ private $enkey;//加密解密用的密钥 //构造参数是密钥 public function __construct($key=''){ if(…

2015-01-13 923
1 70 71 72 73 74 79