php 948

#PHP
获取机器网卡的物理(MAC)地址PHP代码

<?php /** 获取机器网卡的物理(MAC)地址 **/ class GetMacAddr { var $return_array = array(); // 返回带有M…

2015-01-22 363

#PHP
PHP上传图片代码

<?php // upload.php echo <<<_END <html><head><title>PHP Form…

2015-01-22 611

#PHP
PHP获取IP与连接数,并获取IP所在地址

php-cli下执行 windows下的运维工具,改成linux也很方便 用PHP获取IP与连接数,并获取IP所在地址,主要针对80端口,其他端口也能看到 开启反解ip可判断是否是…

2015-01-22 763

#PHP
PHP中的一些文件操作函数使用演示

function fileToArray($file) { if (!$array = file($file)) { die("fileToArray: Could no…

2015-01-22 289

#PHP
php获取文件MIME类型

<?php $mime = array ( //applications 'ai' => 'application/postscript', 'eps' => '…

2015-01-22 189

#PHP
观察者模式PHP实现

<?php interface Message { static function getType(); }; interface Observer { function n…

2015-01-22 418

#PHP
PHP生成自定义验证码

<?php public function captcha(){ $font_dir = $_SERVER ["DOCUMENT_ROOT"] . &qu…

2015-01-22 372

#PHP
php操作SVN类

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

2015-01-22 123

#PHP
php生成验证码代码

<?php session_start (); header ( 'Content-type: image/png' ); //创建图片 $im = imagecreate(…

2015-01-21 289

#PHP
PHP图片缩放水印类

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

2015-01-21 215

#PHP
php生成折线图代码

/****************************** * 折线图生成函数 ******************************/ function line_st…

2015-01-21 643

#PHP
phpexcel 读写xls文件例子

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

2015-01-20 746
1 66 67 68 69 70 79