PHP的Collection集合类 代码段

php header("Content-type:text/html; charset=utf-8"); class Collection{ private $_members=array(); private

phpw34 2015-04-21   3871   0
PHP  

php 操作mysql 代码段

代码: php header('Content-Type:text/html;charset=utf-8'); // 数据库地址 define('DB_HOST','localhost'); //数据库用户名

BernardHage 2016-02-05   997   0
PHP  

PHP Redis类操作 代码段

******************************* * InitPHP 2.0 国产PHP开发框架 Dao-Nosql-Redis *---------------------------

gxfw 2015-04-25   5966   0
PHP   Redis  

php的httpClient 类 代码段

php class httpClient { public $buffer = null; // buffer 获取返回的字符串 public $referer = null; // referer

nepe 2015-04-29   993   0
PHP  

PHP 工具类库 代码段

php /** * 常用工具类 * author Lee. * Last modify $Date: 2012-8-23 */ class Tool { /** * js 弹窗并且跳转 * @param

e6mb 2015-01-07   1716   0
PHP  

php操作mysql的类 代码段

[PHP]代码 php class mysql { private $db_host; //数据库主机 private $db_user; //数据库用户名 private $db_pwd; //数据库用户名密码

ebey2291 2016-01-23   4019   0
PHP  

php文件上传类 代码段

ILE_SIZE选项指定的值"; break; case 1: $str .= "上传文件超过了php.ini 中upload_max_filesize选项的值"; break; case -1: $str

b573 2015-01-24   4292   0
PHP  

php日期处理代码 代码段

php echo "

"; echo date("Y-m-d",strtotime("now")), "\n"; echo "
"; echo date("Y-m-d",strtotime("-1

jopen 2015-08-21   6380   0
PHP  

php操作SVN类 代码段

php /** * * This class for execute the external program of svn * * @auth Seven Yang

6e72 2015-01-22   1471   0
PHP  

PHP网页抓图 代码段

php header('Content-Type:text/html;charset=utf-8'); /** * 一个用于抓去图片的类 */ class download_image { public

nepe 2015-04-29   1565   0
PHP  

PHP的AES加密类 代码段

PHP的AES加密类 aes.php php /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Roy91E 2016-01-21   2116   0

php 解压rar文件的代码 代码段

对于zip文件网上的例子很多,rar文件解压php没有直接支持,可以用pecl 到 http://pecl.php.net/package/rar 下载对应版本的  非线程安全的dll 然后扔到php的 ext目录下。

pw36 2015-02-07   1103   0
PHP  

PHP的AES加密类 代码段

- - - - - - - - - - */ /* AES implementation in PHP (c) Chris Veness 2005-2011. Right of free use is

php7228 2015-01-13   1779   0
PHP  

PHP缓存类 代码段

$cache = new php_cache('index'); $cache = new php_cache('index',1800); $cache = new php_cache('index'

lpki123 2015-03-03   1168   0
jQuery  

PHP数组生成 CSV 文件 代码段

一个很简单的功能,从一个PHP数组生成一个.csv文件。此函数使用 fputcsv PHP 内置函数生成逗号分隔文件(.CSV)。该函数有3个参数:数据,分隔符和CSV enclosure,默认是双引号。

jopen 2015-03-03   1165   0
PHP  

PHP缓存类 代码段

使用 php header("content-type:text/html;charset:utf-8"); require_once 'cache.class.php'; $dir = dirname(__FILE__)

ouhp9343 2016-01-23   975   0
PHP  

php的zip压缩代码 代码段

php $error = ""; //error holder if(isset($_POST['createpdf'])){ $post = $_POST; $file_folder = "files/";

n6bg 2015-04-29   797   0
PHP  

PHP 格式化日期 代码段

php格式化日期 php代码 function ShowDate($flag=0, $timestr=NULL) { // 获取周几 $warr = array( "0" => 星期日, "1" =>

ebey2291 2016-01-23   1317   0

php实现简单的日历类 代码段

php实现简单的日历类 [PHP]代码 php class calendar{ private $year; private $month; private $day_week; function

ebey2291 2016-01-23   721   0
PHP  

php上传图片代码演示 代码段

name="form1" method="post" action="admin_upfile.php" enctype="multipart/form-data">

pythopen 2015-01-22   3131   0
PHP  
1 2 3 4 5 6 7 8 9 10