Php/Php7

PHP常用正则表达式

平时做网站经常要用正则表达式,下面是一些讲解和例子,仅供大家参考和修改使用: “^\d+$”  //非负整数(正整数 + 0) “^[0-9][1-9][0-9]$”  //正整数 “^((-\d+)|(0+))$”  //非正整数(负整数 + 0) “^-[0-9][1-9][0-9]$”  //负整数 “^-?\d+$”    //整数 “^\d+(.\d+)?$”  //非负浮点数(正浮点数 + 0) “^(([0-9]+.[0-9][1-9][0-9])|([0-9][1-9][0-9].[0-9]+)|([0-9][1-9][0-9]))$”  //正浮点数 “^((-\d+(.\d+)?)|(0+(.0+)?))$”  //非正浮点数(负浮点数 + 0) “^(-(([0-9]+.[0-9][1-9][0-9])|([0-9][1-9][0-9].[0-9]+)|([0-9][1-9][0-9])))$”  //负浮点数 “^(-?\d+)(.\d+)?$”  //浮点数

BoBLOG 日志同步发布到QQ空间插件!

首先强调一下.. 本插件灵感来自于post2qzone 但程序完全为自己原创.. 包括邮件类 使用的是自己写的Bigmail (这个是我BIGQI程序框架里的一个邮件类 见笑了).. 昨天在改完 BSINA编辑器高亮代码功能后 无事做就跑到官方论坛看了下插件.. 发现post2qzone 感觉不错 但是缺点也显而易见.. 比如每次不管是 修改还有全新撰写 日志的时候都会 发送邮件. 我个人感觉其中的同步QQ空间日志功能的灵感很棒! 所以自己动手写了一下 为了自己的博客 呼呼 每次我朋友都说我为什么不管理QQ空间..呼呼有了这个功能爽了.. 插件包下载! [file][attach]53[/attach][/file] 说明: 下载打开压缩包!解压plugin覆盖到博客根目录! 如果你改动过 admin/cp_edit.php 这个文件 请手动修改代码!(建议大家别直接还是手动改改比较好) 没有改动或者懒得改的话 直接解压admin覆盖到博客根目录! 以下是我提供的修改方法: 1. 打开admin/cp_edit.php 找到 PHP代码 (大概在185行)

开发大型PHP项目的方法

这里介绍了在PHP中的面向对象编程(OOP,Object Oriented Programming)。将向你演示如何通过使用一些OOP的概念和PHP的技巧来减少编码和提高质量。祝你好运! 面向对象编程的概念: 不同的作者之间说法可能不一样,但是一个OOP语言必须有以下几方面:

抽象数据类型和信息封装 继承 多态

让你的BO-BLOG使用的FMPlayer 插件更加的人性化

主要改进: 让页面 不会因为进入音乐模式而跳到首页,而且增加切换回非音乐模式的功能。。。 当想听音乐的时候 在所在页面点导航栏的【音乐】进入播放模式。。而且页面还会保持当前页面 不会跳到首页 当处于播放模式的时候 想切换到非音乐模式的时候 只需点下导航栏的【音乐】 即可去掉音乐模式。。。 而且页面保持在原来的页面。。。

利用 QQWry.Dat 实现 IP 地址高效检索(PHP)

根据 LumaQQ 开发者文档中的纯真 IP 数据库格式详解,我编写了一个 PHP 的查询 IP 所在地区信息的类。在编写过程中发现纯真 IP 数据库格式详解中关于记录区的描述不是很全面,不过出入也不是很大,所以我没必要再写一份纯真 IP 数据库的格式说明了,大家感兴趣的话,读一读下面的代码应该就能看出来了。代码中加了很详细的注释,应该很容易读懂的。

在创建这个类的一个实例后,实例中就保存了打开的文件指针和一些查询需要的信息,每次查询时不需要重新打开文件,直到页面执行结束后,打开的文件才会自动关闭。这样。在一个页面内进行多次查询时,效率是很高的。并且此类不仅可以直接查询 IP,还可以自动将域名解析为 IP 进行查询。

我自己整理 DZ 的GD类~ 作者:DZ-monkeye 整理加注:haierspi

IMAGE类变量含义 Haierspi原创
PHP代码


<? php

//DZ IMAGE类包含变量含义 >Haierspi
$imagelib = 0;
//水印模式 0为使用GD库 1为外置IM处理
$imageimpath = ”;
//IM执行路径
$thumbstatus = 0;
//缩略图功能状态 0功能不启用 1自动缩略图 2指定大小的缩略图
$thumbwidth = ”;;
//缩略图宽度
$thumbheight = ”;;
//缩略图高度
$watermarkstatus = ”;;
//水印状态
/*
0 不启用缩略图
以下是各个位置对应的值:
1 2 3
4 5 6
7 8 9
比如值为1 则在图片左上角添加水印
*/
$watermarkminwidth = 300;
$watermarkminheight = 300;
// 水印功能开启的最小宽度和最小高度 当低于这个值时 不启用水印
$watermarktrans = 50;
//水印效果融合度 这个对GIF图片有效
$watermarkquality = 100;
//水印图片压缩质量


$watermarktype = 1;
//水印类型 0 gif ;1 PNG ;2 文本水印
$watermarktext = array();
//文字水印的一些参数 这个变量是ARRAY 值对应以下:
$watermarktext[text] = ”;
//文字水印内容
$watermarktext[fontpath] = ”;
//文字水印字体路径
$watermarktext[size] = ”;
//文字水印字体大小
$watermarktext[angle] = ”;
//文字水印字体角度
$watermarktext[color] = ”;
//文字水印字体颜色
$watermarktext[shadowx] = ”;
//文字水印投影X偏移
$watermarktext[shadowy] = ”;
//文字水印投影Y偏移
$watermarktext[shadowcolor] = ”;
//文字水印投影颜色

//IM 变量含义 略… 自己想吧 呵呵


class Image {
    var $attachinfo = '';
    var $srcfile = '';
    var $targetfile = '';
    var $imagecreatefromfunc = '';
    var $imagefunc = '';
    var $attach = array();
    var $animatedgif = 0;

    function Image($srcfile, $targetfile, $attach = array()) {
            global $imagelib, $watermarktext;
            $this - > srcfile = $srcfile;
            $this - > targetfile = $targetfile;
            $this - > attach = $attach;
            $this - > attachinfo = @getimagesize($targetfile); //返回图片信息
            if (!$imagelib) {
                switch ($this - > attachinfo['mime']) {
                    case 'image/jpeg':
                        $this - > imagecreatefromfunc = function_exists('imagecreatefromjpeg') ? 'imagecreatefromjpeg' : '';
                        $this - > imagefunc = function_exists('imagejpeg') ? 'imagejpeg' : '';
                        break;
                    case 'image/gif':
                        $this - > imagecreatefromfunc = function_exists('imagecreatefromgif') ? 'imagecreatefromgif' : '';
                        $this - > imagefunc = function_exists('imagegif') ? 'imagegif' : '';
                        break;
                    case 'image/png':
                        $this - > imagecreatefromfunc = function_exists('imagecreatefrompng') ? 'imagecreatefrompng' : '';
                        $this - > imagefunc = function_exists('imagepng') ? 'imagepng' : '';
                        break;
                }
            } else {
                $this - > imagecreatefromfunc = $this - > imagefunc = TRUE;
            }
            $this - > attach['size'] = emptyempty($this - > attach['size']) ? @filesize($targetfile) : $this - > attach['size'];
            //取得图像大小
            if ($this - > attachinfo['mime'] == 'image/gif') {
                $fp = fopen($targetfile, 'rb');
                $targetfilecontent = fread($fp, $this - > attach['size']);
                fclose($fp);
                $this - > animatedgif = strpos($targetfilecontent, 'NETSCAPE2.0') === FALSE ? 0 : 1;
                //动画的GIF 里确实有 “NETSCAPE2.0” 这个字符
                //静态GIF 里没有 “NETSCAPE2.0” 字符,哈哈 郁闷了我好长时间
            }
        }
        //缩略图函数
    function Thumb($thumbwidth, $thumbheight, $preview = 0) {
            global $imagelib, $imageimpath, $thumbstatus, $watermarkstatus;
            //是否执行水印功能 $imageimpath 这个是ImageMagick的安装路径
            $imagelib && $imageimpath ? $this - > Thumb_IM($thumbwidth, $thumbheight, $preview) : $this - > Thumb_GD($thumbwidth, $thumbheight, $preview);
            if ($thumbstatus == 2 && $watermarkstatus) {
                $this - > Image($this - > srcfile, $this - > targetfile, $this - > attach);
                $this - > attach['size'] = filesize($this - > targetfile);
            }
        }
        //水印函数
    function Watermark($preview = 0) {
            global $imagelib, $imageimpath, $watermarktype, $watermarktext, $watermarkminwidth, $watermarkminheight;
            if (($watermarkminwidth && $this - > attachinfo[0] <= $watermarkminwidth && $watermarkminheight && $this - > attachinfo[1] <= $watermarkminheight) || ($watermarktype == 2 && (!file_exists($watermarktext['fontpath']) || !is_file($watermarktext['fontpath'])))) {
                return;
            }
            $imagelib && $imageimpath ? $this - > Watermark_IM($preview) : $this - > Watermark_GD($preview);
        }
        //GD库函数
    function Thumb_GD($thumbwidth, $thumbheight, $preview = 0) {
        global $thumbstatus;
        if ($thumbstatus && function_exists('imagecreatetruecolor') && function_exists('imagecopyresampled') && function_exists('imagejpeg')) {
            $imagecreatefromfunc = $this - > imagecreatefromfunc;
            $imagefunc = $thumbstatus == 1 ? 'imagejpeg' : $this - > imagefunc;
            list($img_w, $img_h) = $this - > attachinfo;
            if (!$this - > animatedgif && ($img_w >= $thumbwidth || $img_h >= $thumbheight)) {
                $attach_photo = $imagecreatefromfunc($this - > targetfile);
                $x_ratio = $thumbwidth / $img_w;
                $y_ratio = $thumbheight / $img_h;
                if (($x_ratio * $img_h) < $thumbheight) {
                    $thumb['height'] = ceil($x_ratio * $img_h);
                    $thumb['width'] = $thumbwidth;
                } else {
                    $thumb['width'] = ceil($y_ratio * $img_w);
                    $thumb['height'] = $thumbheight;
                }
                $targetfile = !$preview ? ($thumbstatus == 1 ? $this - > targetfile.
                    '.thumb.jpg' : $this - > targetfile) : DISCUZ_ROOT.
                './forumdata/watermark_temp.jpg';
                $thumb_photo = imagecreatetruecolor($thumb['width'], $thumb['height']);
                imageCopyreSampled($thumb_photo, $attach_photo, 0, 0, 0, 0, $thumb['width'], $thumb['height'], $img_w, $img_h);
                if ($this - > attachinfo['mime'] == 'image/jpeg') {
                    $imagefunc($thumb_photo, $targetfile, 100);
                } else {
                    $imagefunc($thumb_photo, $targetfile);
                }
                $this - > attach['thumb'] = $thumbstatus == 1 ? 1 : 0;
            }
        }
    }

    function Watermark_GD($preview = 0) {
            global $watermarkstatus, $watermarktype, $watermarktrans, $watermarkquality, $watermarktext;
            $watermarkstatus = $GLOBALS['forum']['disablewatermark'] ? 0 : $watermarkstatus;
            if ($watermarkstatus && function_exists('imagecopy') && function_exists('imagealphablending') && function_exists('imagecopymerge')) {
                $imagecreatefromfunc = $this - > imagecreatefromfunc;
                $imagefunc = $this - > imagefunc;
                list($img_w, $img_h) = $this - > attachinfo;
                if ($watermarktype < 2) {
                    $watermark_file = $watermarktype == 1 ? './images/common/watermark.png' : './images/common/watermark.gif';
                    $watermarkinfo = @getimagesize($watermark_file);
                    $watermark_logo = $watermarktype == 1 ? @imageCreateFromPNG($watermark_file) : @imageCreateFromGIF($watermark_file);
                    if (!$watermark_logo) {
                        return;
                    }
                    list($logo_w, $logo_h) = $watermarkinfo;
                } else {
                    $box = imagettfbbox($watermarktext['size'], $watermarktext['angle'], $watermarktext['fontpath'], $watermarktext['text']);
                    $logo_h = max($box[1], $box[3])– min($box[5], $box[7]);
                    $logo_w = max($box[2], $box[4])– min($box[0], $box[6]);
                    $ax = min($box[0], $box[6]) * -1;
                    $ay = min($box[5], $box[7]) * -1;
                }
                $wmwidth = $img_w– $logo_w;
                $wmheight = $img_h– $logo_h;
                if (($watermarktype < 2 && is_readable($watermark_file) || $watermarktype == 2) && $wmwidth > 10 && $wmheight > 10 && !$this - > animatedgif) {
                    switch ($watermarkstatus) {
                        case 1:
                            $x = +5;
                            $y = +5;
                            break;
                        case 2:
                            $x = ($img_w– $logo_w) / 2;
                            $y = +5;
                            break;
                        case 3:
                            $x = $img_w– $logo_w– 5;
                            $y = +5;
                            break;
                        case 4:
                            $x = +5;
                            $y = ($img_h– $logo_h) / 2;
                            break;
                        case 5:
                            $x = ($img_w– $logo_w) / 2;
                            $y = ($img_h– $logo_h) / 2;
                            break;
                        case 6:
                            $x = $img_w– $logo_w;
                            $y = ($img_h– $logo_h) / 2;
                            break;
                        case 7:
                            $x = +5;
                            $y = $img_h– $logo_h– 5;
                            break;
                        case 8:
                            $x = ($img_w– $logo_w) / 2;
                            $y = $img_h– $logo_h– 5;
                            break;
                        case 9:
                            $x = $img_w– $logo_w– 5;
                            $y = $img_h– $logo_h– 5;
                            break;
                    }
                    $dst_photo = imagecreatetruecolor($img_w, $img_h);
                    $target_photo = @$imagecreatefromfunc($this - > targetfile);
                    imageCopy($dst_photo, $target_photo, 0, 0, 0, 0, $img_w, $img_h);
                    if ($watermarktype == 1) {
                        imageCopy($dst_photo, $watermark_logo, $x, $y, 0, 0, $logo_w, $logo_h);
                    }
                    elseif($watermarktype == 2) {
                        if (($watermarktext['shadowx'] || $watermarktext['shadowy']) && $watermarktext['shadowcolor']) {
                            $shadowcolorrgb = explode(',', $watermarktext['shadowcolor']);
                            $shadowcolor = imagecolorallocate($dst_photo, $shadowcolorrgb[0], $shadowcolorrgb[1], $shadowcolorrgb[2]);
                            imagettftext($dst_photo, $watermarktext['size'], $watermarktext['angle'], $x + $ax + $watermarktext['shadowx'], $y + $ay + $watermarktext['shadowy'], $shadowcolor, $watermarktext['fontpath'], $watermarktext['text']);
                        }
                        $colorrgb = explode(',', $watermarktext['color']);
                        $color = imagecolorallocate($dst_photo, $colorrgb[0], $colorrgb[1], $colorrgb[2]);
                        imagettftext($dst_photo, $watermarktext['size'], $watermarktext['angle'], $x + $ax, $y + $ay, $color, $watermarktext['fontpath'], $watermarktext['text']);
                    } else {
                        imageAlphaBlending($watermark_logo, true);
                        imageCopyMerge($dst_photo, $watermark_logo, $x, $y, 0, 0, $logo_w, $logo_h, $watermarktrans);
                    }
                    $targetfile = !$preview ? $this - > targetfile : DISCUZ_ROOT.
                    './forumdata/watermark_temp.jpg';
                    if ($this - > attachinfo['mime'] == 'image/jpeg') {
                        $imagefunc($dst_photo, $targetfile, $watermarkquality);
                    } else {
                        $imagefunc($dst_photo, $targetfile);
                    }
                    $this - > attach['size'] = filesize($this - > targetfile);
                }
            }
        }
        //ImageMagick的函数定义 Magickwand
    function Thumb_IM($thumbwidth, $thumbheight, $preview = 0) {
        global $thumbstatus, $imageimpath;
        if ($thumbstatus) {
            list($img_w, $img_h) = $this - > attachinfo;
            $targetfile = !$preview ? ($thumbstatus == 1 ? $this - > targetfile.
                '.thumb.jpg' : $this - > targetfile) : DISCUZ_ROOT.
            './forumdata/watermark_temp.jpg';
            if (!$this - > animatedgif && ($img_w >= $thumbwidth || $img_h >= $thumbheight)) {
                $exec_str = $imageimpath.
                '/convert -geometry '.$thumbwidth.
                'x'.$thumbheight.
                ' '.$this - > targetfile.
                " ".$targetfile;@
                exec($exec_str, $output, $return);
                if (emptyempty($return) && emptyempty($output)) {
                    $this - > attach['thumb'] = $thumbstatus == 1 ? 1 : 0;
                }
            }
        }
    }

    function Watermark_IM($preview = 0) {
        global $watermarkstatus, $watermarktype, $watermarktrans, $watermarkquality, $watermarktext, $imageimpath;
        switch ($watermarkstatus) {
            case 1:
                $gravity = 'NorthWest';
                break;
            case 2:
                $gravity = 'North';
                break;
            case 3:
                $gravity = 'NorthEast';
                break;
            case 4:
                $gravity = 'West';
                break;
            case 5:
                $gravity = 'Center';
                break;
            case 6:
                $gravity = 'East';
                break;
            case 7:
                $gravity = 'SouthWest';
                break;
            case 8:
                $gravity = 'South';
                break;
            case 9:
                $gravity = 'SouthEast';
                break;
        }
        $targetfile = !$preview ? $this - > targetfile : DISCUZ_ROOT.
        './forumdata/watermark_temp.jpg';
        if ($watermarktype < 2) {
            $watermark_file = $watermarktype == 1 ? DISCUZ_ROOT.
            './images/common/watermark.png': DISCUZ_ROOT.
            './images/common/watermark.gif';
            $exec_str = $imageimpath.
            '/composite'.
            ($watermarktype != 1 && $watermarktrans != '100' ? ' -watermark '.$watermarktrans.
                '%' : '').
            ' -gravity '.$gravity.
            ' '.$watermark_file.
            ' '.$this - > targetfile.
            ' '.$targetfile;
        } else {
            $watermarktext['text'] = str_replace(array("\n", "\r", "'"), array('', '', '\''), $watermarktext['text']);
            $watermarktext['angle'] = -$watermarktext['angle'];
            $translate = $watermarktext['translatex'] || $watermarktext['translatey'] ? ' translate '.$watermarktext['translatex'].
            ','.$watermarktext['translatey']: '';
            $skewX = $watermarktext['skewx'] ? ' skewX '.$watermarktext['skewx'] : '';
            $skewY = $watermarktext['skewy'] ? ' skewY '.$watermarktext['skewy'] : '';
            $exec_str = $imageimpath.
            '/convert'.
            ' -font "'.$watermarktext['fontpath'].
            '"'.
            ' -pointsize '.$watermarktext['size'].
                (($watermarktext['shadowx'] || $watermarktext['shadowy']) && $watermarktext['shadowcolor'] ?
                    ' -fill "rgb('.$watermarktext['shadowcolor'].
                    ')"'.
                    ' -draw "'.
                    ' gravity '.$gravity.$translate.$skewX.$skewY.
                    ' rotate '.$watermarktext['angle'].
                    ' text '.$watermarktext['shadowx'].
                    ','.$watermarktext['shadowy'].
                    ' \''.$watermarktext['text'].
                    '\'"' : '').
            ' -fill "rgb('.$watermarktext['color'].
            ')"'.
            ' -draw "'.
            ' gravity '.$gravity.$translate.$skewX.$skewY.
            ' rotate '.$watermarktext['angle'].
            ' text 0,0 \''.$watermarktext['text'].
            '\'"'.
            ' '.$this - > targetfile.
            ' '.$targetfile;
        }@
        exec($exec_str, $output, $return);
        if (emptyempty($return) && emptyempty($output)) {
            $this - > attach['size'] = filesize($this - > targetfile);
        }
    }
}