찾다
백엔드 개발PHP 튜토리얼一个干页面静态化的php类

一个做页面静态化的php类

<?phpnamespace Common;/* * * 功能:页面静态化的创建和删除 *      创建:当且仅当,一个页面需要被静态化并且还未静态化时。 *      删除:当且仅当,一个页面存在静态化页面并且需要被重新静态化时。 * * 作者:郭军周 * * 注 :本类基于ThinkPHP3.2,或者其他具有“单一入口且MVC模式”的其他php框架。 * * 使用方式:在Controller的构造方法中获取其对象;在Controller的销毁方法里,用其对象的_static方法。 *      例:XXXController extends BaseController. *         BaseController: *         function __construct(){ *             $this->__sh = StaticHtml::getInstance(); *         } *         function __destruct(){ *             $this->__sh->_static(); *         } * * */class StaticHtml{    private static $_instance = null;   /* 单例模式,自身的引用 */    private $_needStatic = false;   /* 是否需要将其静态化 */    private $_needDeleteStatic = false;     /* 是否需要删除其静态化的页面 */    private $_hasStaticed = true;   /* 是否存在其的静态化页面 */    private $_controller = null;    /* 当前被访问的controller */    private $_action = null;        /* 当前被访问的action *///    private $_staticAgain = false;   /* 删除静态文件后,是否马上重新更新【【注意】再次请求】 */    private $_save_path = null;     /* 将要创建或者删除的静态文件的路径 */    private $_conf = array( /* 此文件定义一些静态文件的存放方式 */        'files_per_directory' => 100        /* 此值不允许被修改,除非是要删除所有已经存在的静态文件,重新缓存 */    );    private $_staticList = array(   /* 此数组,定义了需要创建静态化页面的Controller的action *///        'Base' => array(      /* Base为controller name *///            'aaa' => array(       /* aaa为action name *///                'save_path' => '/StaticHtml/Base/aaa/',   /* save_path为生成的静态文件存放的根路径 *///                'static_base' => 'id',        /* static_base为生成静态文件的“依据”。建议为对应数据库的primary_key *///                'alias' => 'aaa'  /* 静态文件的名字,否则为1.html *///            )//        )        'Mynotes' => array(            'look_notes' => array(                'save_path' => '/StaticHtml/Mynotes/look_notes/',                'static_base' => 'id',                'alias' => 'note'            ),            'add_personal_notes' => array(                'save_path' => '/StaticHtml/Mynotes/',                'alias' => 'note-add'            )        ),        'Resource' => array(            'allResource' => array(                'save_path' => '/StaticHtml/Resource/',                'alias' => 'allResource'            ),            'resource_add' => array(                'save_path' => '/StaticHtml/Resource/',                'alias' => 'resourceAdd'            )        ),        'Thing' => array(            'suggestion_of_lecture' => array(                'save_path' => '/StaticHtml/Lecture/',                'alias' => 'voteLecture'            )        ),        'Passwordfix' => array(            'index' => array(                'save_path' => '/StaticHtml/Information/',                'alias' => 'updatePassword'            )        ),        'Information' => array(            'index' => array(                'save_path' => '/StaticHtml/Information/',                'static_base' => 'user_id',                'alias' => 'information'            )        ),        'Courseinfo' => array(            'course_show' => array(                'save_path' => '/StaticHtml/Information/',                'static_base' => 'user_id',                'alias' => 'course'            )        )    );    private $_deleteList = array(   /* 此数组,定义了需要删除某些静态化页面的Controller的action *///        'Base' => array(      /* Base为controller name *///            'bbb' => array(       /* bbb为action name *///                'save_path' => '/StaticHtml/Base/aaa/',   /* save_path为要删除的静态文件存放的根路径 *///                'static_base' => 'id',        /* static_base为确定静态文件路径的“依据”。建议为对应数据库的primary_key *///                'alias' => 'aaa'  /* 静态文件的名字,否则为1.html *///            )//        )        'Mynotes' => array(            'edits_notes' => array(                'save_path' => '/StaticHtml/Mynotes/look_notes/',                'static_base' => 'id',                'alias' => 'note'            )        ),        'Information' => array(            'save_user_info' => array(                'save_path' => '/StaticHtml/Information/',                'static_base' => 'user_id',                'alias' => 'information'            )        ),        'Courseinfo' => array(            'course_update' => array(                'save_path' => '/StaticHtml/Information/',                'static_base' => 'user_id',                'alias' => 'course'            )        )    );    private function __construct(){        $this->needStatic(); /* 确定本次请求是否需要静态化 */        $this->hasStaticed(); /* 确定本次请求是否已经存在静态化页面 */        $this->needDeleteStatic(); /* 确定本次请求是否需要删除某些静态页面 */    }    /* 确定需要删除的静态文件的存放路径 */    private function needDeleteStatic(){        if($this->_needDeleteStatic){            $save_path = $this->getSavePath($this->_deleteList[$this->_controller][$this->_action]);            $this->_hasStaticed = false;            if(file_exists(ROOT_PATH.$save_path)){                $this->_hasStaticed = true;            }//            $this->_staticAgain = $this->_deleteList[$this->_controller][$this->_action]['visitAgain'];            $this->_save_path = ROOT_PATH.$save_path;        }    }    /* 获取本类的,唯一的,实例化 */    public static function getInstance(){        if(!(self::$_instance instanceof self)){            self::$_instance = new self();        }        return self::$_instance;    }    /* 判断是否存在其静态化的文件 */    private function hasStaticed(){        if($this->_needStatic){            $save_path = $this->getSavePath($this->_staticList[$this->_controller][$this->_action]);            if(!file_exists(ROOT_PATH.$save_path)){                $this->_hasStaticed = false;                ob_start();            }else{                header("location: http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME']).$save_path);            }            $this->_save_path = ROOT_PATH.$save_path;        }    }    /* 获取本次请求要生成或者删除的,静态化文件的路径 */    private function getSavePath($conf){        if(!isset($conf['static_base'])){            $save_path = $conf['save_path'];            $save_path .= $conf['alias'].'.html';        }else{            if($conf['static_base'] == 'user_id'){                $id = (int)$_SESSION['logined_user']['id'];            }else{                if(IS_GET){                    $id = $_GET[$conf['static_base']];                }else{                    $id =  $_POST[$conf['static_base']];                }            }            $save_path = $conf['save_path'];            $directory_id = ceil($id/$this->_conf['files_per_directory']);            $save_path .= $directory_id.'/';            if($conf['alias']){                $fileName = $conf['alias'].'-';            }            $fileName .= $id.'.html';            $save_path .= $fileName;        }        return $save_path;    }    /* 确定本次请求,是否需要生成静态化文件 */    private function needStatic(){        $url = explode('/',__ACTION__);        $this->_controller = $url[4];        $this->_action = $url[5];        if(isset($this->_staticList[$this->_controller]) && isset($this->_staticList[$this->_controller][$this->_action])){            $this->_needStatic = true;        }        if(isset($this->_deleteList[$this->_controller]) && isset($this->_deleteList[$this->_controller][$this->_action])){            $this->_needDeleteStatic = true;        }    }    /* 生成,或者删除,静态化文件 */    public function _static(){        if($this->_needStatic && !$this->_hasStaticed){            $html = ob_get_contents();            $this->_mkdir(dirname($this->_save_path));            file_put_contents($this->_save_path,$html);        }        if($this->_needDeleteStatic && $this->_hasStaticed){            unlink($this->_save_path);            /*if($this->_staticAgain){                header("location: http://www.baidu.com");//                header("location: http://".$_SERVER['HTTP_HOST'].'/'.$_SERVER['REQUEST_URI']);            }*/        }    }    /* 创建目录 */    private function _mkdir($path){        if (!file_exists($path)){            $this->_mkdir(dirname($path));            mkdir($path, 0777);        }    }}?>
성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
华为GT3 Pro和GT4的差异是什么?华为GT3 Pro和GT4的差异是什么?Dec 29, 2023 pm 02:27 PM

许多用户在选择智能手表的时候都会选择的华为的品牌,其中华为GT3pro和GT4都是非常热门的选择,不少用户都很好奇华为GT3pro和GT4有什么区别,下面就就给大家介绍一下二者。华为GT3pro和GT4有什么区别一、外观GT4:46mm和41mm,材质是玻璃表镜+不锈钢机身+高分纤维后壳。GT3pro:46.6mm和42.9mm,材质是蓝宝石玻璃表镜+钛金属机身/陶瓷机身+陶瓷后壳二、健康GT4:采用最新的华为Truseen5.5+算法,结果会更加的精准。GT3pro:多了ECG心电图和血管及安

设置Linux系统的PATH环境变量步骤设置Linux系统的PATH环境变量步骤Feb 18, 2024 pm 05:40 PM

Linux系统如何设置PATH环境变量在Linux系统中,PATH环境变量用于指定系统在命令行中搜索可执行文件的路径。正确设置PATH环境变量可以方便我们在任何位置执行系统命令和自定义命令。本文将介绍如何在Linux系统中设置PATH环境变量,并提供详细的代码示例。查看当前的PATH环境变量在终端中执行以下命令,可以查看当前的PATH环境变量:echo$P

修复:截图工具在 Windows 11 中不起作用修复:截图工具在 Windows 11 中不起作用Aug 24, 2023 am 09:48 AM

为什么截图工具在Windows11上不起作用了解问题的根本原因有助于找到正确的解决方案。以下是截图工具可能无法正常工作的主要原因:对焦助手已打开:这可以防止截图工具打开。应用程序损坏:如果截图工具在启动时崩溃,则可能已损坏。过时的图形驱动程序:不兼容的驱动程序可能会干扰截图工具。来自其他应用程序的干扰:其他正在运行的应用程序可能与截图工具冲突。证书已过期:升级过程中的错误可能会导致此issu简单的解决方案这些适合大多数用户,不需要任何特殊的技术知识。1.更新窗口和Microsoft应用商店应用程

如何修复无法连接到iPhone上的App Store错误如何修复无法连接到iPhone上的App Store错误Jul 29, 2023 am 08:22 AM

第1部分:初始故障排除步骤检查苹果的系统状态:在深入研究复杂的解决方案之前,让我们从基础知识开始。问题可能不在于您的设备;苹果的服务器可能会关闭。访问Apple的系统状态页面,查看AppStore是否正常工作。如果有问题,您所能做的就是等待Apple修复它。检查您的互联网连接:确保您拥有稳定的互联网连接,因为“无法连接到AppStore”问题有时可归因于连接不良。尝试在Wi-Fi和移动数据之间切换或重置网络设置(“常规”>“重置”>“重置网络设置”>设置)。更新您的iOS版本:

如何设置path环境变量如何设置path环境变量Sep 04, 2023 am 11:53 AM

设置path环境变量的方法:1、Windows系统,打开“系统属性”,点击“属性”选项,点击“高级系统设置”,在“系统属性”窗口中,选择“高级”标签,然后点击“环境变量”按钮,找到并点击“Path”编辑保存后即可;2、Linux系统,打开终端,打开你的bash配置文件,在文件末尾添加“export PATH=$PATH:文件路径”保存即可;3、MacOS系统,操作同上。

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code<form name="myform"

如何正确设置Linux中的PATH环境变量如何正确设置Linux中的PATH环境变量Feb 22, 2024 pm 08:57 PM

如何正确设置Linux中的PATH环境变量在Linux操作系统中,环境变量是用来存储系统级别的配置信息的重要机制之一。其中,PATH环境变量被用来指定系统在哪些目录中查找可执行文件。正确设置PATH环境变量是确保系统正常运行的关键一步。本文将介绍如何正确设置Linux中的PATH环境变量,并提供具体的代码示例。1.查看当前PATH环境变量在终端中输入以下命

Amazfit Helio Ring now available in Europe: Save €149 when bundled with a smartwatchAmazfit Helio Ring now available in Europe: Save €149 when bundled with a smartwatchJun 17, 2024 am 11:19 AM

Amazfitunveileditsfirstsmartring,theHelio,atCES2024earlierthisyear.Almostsixmonthslater,itisnowbeingsoldinEuropeaswell.Accordingtothemanufacturer,thenewAmazfitHelioRingiscurrentlyavailableandcanbeordereddirectly

See all articles

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

맨티스BT

맨티스BT

Mantis는 제품 결함 추적을 돕기 위해 설계된 배포하기 쉬운 웹 기반 결함 추적 도구입니다. PHP, MySQL 및 웹 서버가 필요합니다. 데모 및 호스팅 서비스를 확인해 보세요.

VSCode Windows 64비트 다운로드

VSCode Windows 64비트 다운로드

Microsoft에서 출시한 강력한 무료 IDE 편집기

Dreamweaver Mac版

Dreamweaver Mac版

시각적 웹 개발 도구

SublimeText3 영어 버전

SublimeText3 영어 버전

권장 사항: Win 버전, 코드 프롬프트 지원!

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기