php 948

#PHP
PHP 将视频转成 MP4 并获取视频预览图(用到ffmpeg)

<?php flv_convert_get_thumb('input.avi', 'output.jpg', 'output.ogm'); // code provided …

2015-01-17 883

#PHP
使用 PHP 限制下载速度

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

2015-01-14 898

#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加密解密类

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

2015-01-13 923

#PHP
PHP分页类

<?php /** * 分页类 * * author lynnluo * addtime 2011-08-15 */ define( 'PAGE_NAME','page' )…

2015-01-13 505

#PHP
php 服务器限速代码

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

2015-01-13 542

#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
1 70 71 72 73 74 79