php 948

#PHP
PHP调整图片尺寸

/********************** *@filename - path to the image *@tmpname - temporary path to thumb…

2015-01-22 977

#PHP
php自定义urlencode,urldecode函数

//配合JavaScript的ajaxObject函数, 对字串进行转码. function ajax_encode($str){ $patern = array("/%…

2015-01-22 785

#PHP
生成中文验证码的PHP代码

<?php /********************************* * Code by Gently * 24/07/07 *严正声明:验证码为程序随机生成,“…

2015-01-22 807

#PHP
缩放png图片时保持透明度的php代码

//获取源图gd图像标识符 $srcImg = imagecreatefrompng('./src.png'); $srcWidth = imagesx($srcImg); $sr…

2015-01-22 424

#PHP
快速排序的算法php实现

function qsort(&$arr) { _quick_sort($arr, 0, count($arr) - 1); } /** * 采用递归算法的快速排序。 * …

2015-01-22 629

#PHP
包含上传进度PHP文件上传代码

<?php $prefix = ini_get('session.upload_progress.prefix'); $name = ini_get('session.upl…

2015-01-22 971

#PHP
PHP获得Linux环境下的硬盘UUID

$dh = opendir('/dev/disk/by-uuid/'); while($file = readdir($dh)){ if(is_link('/dev/disk/by…

2015-01-22 762

#PHP
CSV 文件处理PHP类

<?php /** * CSV 文件处理类 */ class Csv{ public $csv_array; //csv数组数据 public $csv_str; //csv…

2015-01-22 182

#PHP
获取机器网卡的物理(MAC)地址PHP代码

<?php /** 获取机器网卡的物理(MAC)地址 **/ class GetMacAddr { var $return_array = array(); // 返回带有M…

2015-01-22 363

#PHP
PHP上传图片代码

<?php // upload.php echo <<<_END <html><head><title>PHP Form…

2015-01-22 611

#PHP
PHP获取IP与连接数,并获取IP所在地址

php-cli下执行 windows下的运维工具,改成linux也很方便 用PHP获取IP与连接数,并获取IP所在地址,主要针对80端口,其他端口也能看到 开启反解ip可判断是否是…

2015-01-22 763

#PHP
PHP中的一些文件操作函数使用演示

function fileToArray($file) { if (!$array = file($file)) { die("fileToArray: Could no…

2015-01-22 289
1 65 66 67 68 69 79