php 948

#PHP
图片缩放水印PHP类

/** * 图片缩放水印类 * */ class cls_photo { protected $waterrate = 0.2; //水印图标在图片上的比例 protected $…

2015-01-08 257

#PHP
PHP 对 png 图像进行缩放,支持透明背景

function smart_resize_image( $file, $width = 0, $height = 0, $proportional = false, $outpu…

2015-01-08 848

#PHP
php过滤html标签

/** * 过滤字符串中的html标签 * * @param string $string 待转换的字符串 * @return string */ static public fu…

2015-01-08 336

#PHP
漂亮的 PHP 验证码类

<?php class Page { private $total; //总记录 private $pagesize; //每页显示多少条 private $limit; /…

2015-01-07 865

#PHP
PHP实现的计划(定时)任务

有时候为了定时去调接口,需要程序自动运行。从网上搜到有两种方法可以实现 1、ignore_user_abort() ignore_user_abort()函数搭配set_time_…

2015-01-07 938

#PHP
连接 MySQL 数据库PHP代码

<?php $host="localhost"; $uname="database username"; $pass="da…

2015-01-07 240

#PHP
使用 PHPMailer 发送邮件

PHPMailer 的官方网站:http://phpmailer.worxware.com/ PHPMailer 最新类库下载地址:【点击下载】 PHPMailer GitHub …

2015-01-07 754

#PHP
PHP 工具类库

<?php /** * 常用工具类 * author Lee. * Last modify $Date: 2012-8-23 */ class Tool { /** * js…

2015-01-07 804

#PHP
php使用array_rand生成随机密码

非常简单好用的随机密码生成,喜欢任何字符自己都可以加 function rand_word($num=12){ $re=''; $list="abcdefghijklmn…

2015-01-06 844

#PHP
php上传图片生成缩略图

<?php function createThumbnail($imageDirectory, $imageName, $thumbDirectory, $thumbWidt…

2015-01-06 679

#PHP
php随机生成易于记忆的密码

function random_readable_pwd($length=10){ // the wordlist from which the password gets gen…

2015-01-06 642

#PHP
PHP 的单例模式代码

class User { static function getInstance() { if (self::$instance == NULL) { // If instance…

2015-01-06 388