php 948

#PHP
curl post方式访问网页

$url = http://xxxx.com; $params = array('id'=>11,'aa'=>22,'cc'=>33); $data = http…

2015-01-20 521

#PHP
phpexcel 读写xls文件例子

<?php include_once('PHPExcel.php'); //read excel file; $PHPExcel = new PHPExcel(); $PHP…

2015-01-20 765

#PHP
工厂设计模式PHP实现代码

<?php //人类接口 interface IHuman { function GetName(); } //男人类,实现人类接口 class ManClass imple…

2015-01-20 162

#PHP
php不变形截图

<?php function my_image_resize($src_file, $dst_file , $new_width , $new_height) { $src_…

2015-01-20 345

#PHP
DES加密解密的PHP类

<?php class authCode { public $ttl;//到期时间 时间格式:20120101(年月日) public $key_1;//密钥1 public…

2015-01-20 678

#PHP
二分法查找算法 顺序查找算法的PHP代码

<?php /** * 查找 * **/ // 顺序查找 function normal_search($arrData,$val) { $len = count($arrD…

2015-01-20 806

#PHP
单例模式PHP实现代码

<?php class SqlHelper { private static $_instance; public $_dbname; private function __…

2015-01-20 170

#PHP
php版的24点游戏源码

<?php class TwentyFourCal { public $needle = 24; public $precision = '1e-6'; function T…

2015-01-20 641

#PHP
php实现通过http头禁止浏览器缓存

header('Expires: 0'); header('Last-Modified: '. gmdate('D, d M Y H:i:s') . ' GMT'); header…

2015-01-19 587

#PHP
PHP解压缩 Zip 文件

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

2015-01-18 512

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

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

2015-01-18 710

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

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

2015-01-18 801
1 67 68 69 70 71 79