php图象重叠imagecreatefromjpeg 加水印时必用 补图时也很需要 记得要开gd扩展 ?php /** * @name picpatch.php * @date Thu Sep 17 23:21:28 CST 2008 * @copyright 马永占(MyZ) * @author 马永占(MyZ) * @link http://blog.csd...
//数据库表 [php] view plain copy ?php include comm.php ; //获取分类菜单 $arr =getTree(); $arrone =getFlone(59); $arrtwo =getFltwo(93); $arrmenu =getFlmenu(59); print_r( $arrmenu ); //获取分类树 function getTree(){ global $db...
//获取cpu的空闲百分比 function get_cpufree ( ) { $cmd = top -n 1 -b -d 0.1 | grep Cpu ; //调用top命令和grep命令 $lastline = exec ( $cmd , $output ) ; preg_match ( /(\S+)%id/ , $lastline , $matches ) ; //正则表达式获取c...
function getOS(){ $os=; $Agent=$_SERVER[HTTP_USER_AGENT]; if (eregi(win,$Agent)strpos($Agent, 95)){ $os=Windows 95; }elseif(eregi(win 9x,$Agent)strpos($Agent, 4.90)){ $os=Windows ME; }elseif(eregi(win,$Agent)ereg(98,$Agent)){ $os=Windows 98...
php.ini中有关session的一些设定会影响到session函数的使用,现在以php5版本为例,我们来了解一下php.ini中有关session的设定: ;处理session存取的模式(预设:files) session.save_handler = files ;session档...
#lon为经度,lat为纬度,一定不要弄错了哦 function distance ( $ lon1 , $ lat1 , $ lon2 , $ lat2 ) { return ( 2 * ATAN2 ( SQRT ( SIN ( ( $ lat1 - $ lat2 ) * PI ( ) / 180 / 2 ) * SIN ( ( $ lat1 - $ lat2 ) * PI ( ) / 180 / 2 ) +...
/** * 计算两个坐标之间的距离(米) * @param float $fP1Lat 起点(纬度) * @param float $fP1Lon 起点(经度) * @param float $fP2Lat 终点(纬度) * @param float $fP2Lon 终点(经度) * @return int */ function distanceBetween($...
定义和用法 error_reporting() 设置 PHP 的报错级别并返回当前级别。 语法 error_reporting(report_level) 如果参数 level 未指定,当前报错级别将被返回。下面几项是 level 可能的值: 值 常量 描述...
setcookie ( PHP 3, PHP 4, PHP 5) setcookie -- 发送一个 cookie 信息 说明bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] ) setcookie () 定义一个和其余的 HTTP 标头一...