php 948

#PHP
PHP下载远程图片保存到本地

<?php function get_file($url,$folder,$pic_name){ set_time_limit(24*60*60); //限制最大的执行时间 …

2015-01-18 961

#PHP
依据图片色界在不同位置加水印的PHP类

function add_wm($nmw_water, $src_file, $output_file, $x, $y) { if(file_exists($output_file…

2015-01-18 421

#PHP
PHP获取内存使用信息

echo "Initial: ".memory_get_usage()." bytes \n"; /* prints Initial: 36…

2015-01-18 590

#PHP
PHP解压缩 Zip 文件

/********************** *@file - path to zip file *@destination - destination directory fo…

2015-01-18 497

#PHP
生成图片缩略图PHP函数

<?php /** * 生成缩略图函数(支持图片格式:gif、jpeg、png和bmp) * @author ruxing.li * @param string $src 源…

2015-01-18 692

#PHP
PHP将字符串首字母大小写转换

每个单词的首字母转换为大写:ucwords() 1 <?php 2 $foo = 'hello world!'; 3 $foo = ucword…

2015-01-18 786

#PHP
PHPThumb处理图片,生成缩略图,图片尺寸调整,图片截取,图片加水印,图片旋转

下载地址(github.com/masterexploder/PHPThumb)。 注意这个类库有一个重名的叫phpThumb,只是大小写的差别,所以查找文档的时候千万注意。 在网…

2015-01-18 568

#PHP
PHP链接MYSQL数据库代码

既然现在你看到了这篇文章,说明你肯定知道PHP和MySQL是怎么一回事,我就不啰嗦了。但 为什么你还要继续阅读此文呢?可能是以前你习惯复制粘贴一些代码,并没有真正弄懂代码的含义;也…

2015-01-18 253

#PHP
PHP原比例生成缩略图

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

2015-01-17 259

#PHP
用PHP实现小写金额转换大写金额【精确到分】

/** *数字金额转换成中文大写金额的函数 *String Int $num 要转换的小写数字或小写字符串 *return 大写字母 *小数位为两位 **/ function ge…

2015-01-17 267

#PHP
字符串加密解密PHP类

<? class cryption { function en($str,$key) { $ret=''; $str = base64_encode ($str); for …

2015-01-17 258

#PHP
PHP计算当前日期几天或后几天日期的函数

public static function subDate($day, $date = "", $timestampFlag = true, $format …

2015-01-17 434
1 68 69 70 71 72 79