$url = http://xxxx.com; $params = array('id'=>11,'aa'=>22,'cc'=>33); $data = http…
<?php include_once('PHPExcel.php'); //read excel file; $PHPExcel = new PHPExcel(); $PHP…
<?php //人类接口 interface IHuman { function GetName(); } //男人类,实现人类接口 class ManClass imple…
<?php function my_image_resize($src_file, $dst_file , $new_width , $new_height) { $src_…
<?php class authCode { public $ttl;//到期时间 时间格式:20120101(年月日) public $key_1;//密钥1 public…
<?php /** * 查找 * **/ // 顺序查找 function normal_search($arrData,$val) { $len = count($arrD…
<?php class SqlHelper { private static $_instance; public $_dbname; private function __…
<?php class TwentyFourCal { public $needle = 24; public $precision = '1e-6'; function T…
header('Expires: 0'); header('Last-Modified: '. gmdate('D, d M Y H:i:s') . ' GMT'); header…
每个单词的首字母转换为大写:ucwords() 1 <?php 2 $foo = 'hello world!'; 3 $foo = ucword…
下载地址(github.com/masterexploder/PHPThumb)。 注意这个类库有一个重名的叫phpThumb,只是大小写的差别,所以查找文档的时候千万注意。 在网…
既然现在你看到了这篇文章,说明你肯定知道PHP和MySQL是怎么一回事,我就不啰嗦了。但 为什么你还要继续阅读此文呢?可能是以前你习惯复制粘贴一些代码,并没有真正弄懂代码的含义;也…