찾다
백엔드 개발PHP 튜토리얼Codeigniter 生成静态页面_PHP教程
Codeigniter 生成静态页面_PHP教程Jul 14, 2016 am 10:09 AM
codeigniter사용생성하다단순한법정읽다공전페이지

    使用CI来生成静态页面,其实很简单,就像论坛里面说的那样,读出页面中的数据,再写入html文件中,最后显示这个html文件就行了,好吧,上码。

 
 
[php] 
                
class MY_Loader extends CI_Loader {  
                    
    public function m_view($view, $vars = array(), $return = FALSE){  
        return $this->_m_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_object_to_array($vars), '_ci_return' => $return));  
    }  
                    
    protected function _m_ci_load($_ci_data){  
          .....  
                      
            $_ci_html_file=($_ci_ext==='')? $_ci_view.".html" : $_ci_view;//这,生成静态页面的文件名   
                            
            foreach ($this->_ci_view_paths as $_ci_view_file => $cascade){  
                if (file_exists($_ci_view_file.$_ci_file)){  
                    $_ci_path = $_ci_view_file.$_ci_file;  
                    $_ci_html_path=$_ci_view_file.$_ci_html_file;//生成静态页面的路径   
                    $file_exists = TRUE;  
                    break;  
                }  
      ......  
            }  
        }  
                
     .......  
        //在这   
      if(config_item("html")===TRUE){//是否开启生成静态页面   
            $_html_file=@fopen($_ci_html_path,'r');//创建.html文件   
            $buffer = ob_get_contents();  
            @ob_end_clean();  
            if(!$_html_file||(@filesize($_ci_html_path)!=strlen($buffer))){ //如果文件不存在或文件已更变   
                $_html_file=@fopen($_ci_html_path,'w');  
                flock($_html_file, LOCK_EX);  
                fwrite($_html_file, $buffer);                    
                flock($_html_file, LOCK_UN);  
                fclose($_html_file);  
            }  
            //echo(filesize($_ci_html_path)."-".strlen($buffer));   
            include($_ci_html_path);  
        }  
                            
   ......  
    }    
}  
 
              
class MY_Loader extends CI_Loader {
                  
    public function m_view($view, $vars = array(), $return = FALSE){
        return $this->_m_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_object_to_array($vars), '_ci_return' => $return));
    }
                  
    protected function _m_ci_load($_ci_data){
          .....
                    
            $_ci_html_file=($_ci_ext==='')? $_ci_view.".html" : $_ci_view;//这,生成静态页面的文件名
                          
            foreach ($this->_ci_view_paths as $_ci_view_file => $cascade){
                if (file_exists($_ci_view_file.$_ci_file)){
                    $_ci_path = $_ci_view_file.$_ci_file;
                    $_ci_html_path=$_ci_view_file.$_ci_html_file;//生成静态页面的路径
                    $file_exists = TRUE;
                    break;
                }
      ......
            }
        }
              
     .......
        //在这
      if(config_item("html")===TRUE){//是否开启生成静态页面
            $_html_file=@fopen($_ci_html_path,'r');//创建.html文件
            $buffer = ob_get_contents();
            @ob_end_clean();
            if(!$_html_file||(@filesize($_ci_html_path)!=strlen($buffer))){ //如果文件不存在或文件已更变
                $_html_file=@fopen($_ci_html_path,'w');
                flock($_html_file, LOCK_EX);
                fwrite($_html_file, $buffer);                  
                flock($_html_file, LOCK_UN);
                fclose($_html_file);
            }
            //echo(filesize($_ci_html_path)."-".strlen($buffer));
            include($_ci_html_path);
        }
                          
   ......
    }  
}调用
 
 
[html]  
$this->load->m_view('login',$datas);  
 
$this->load->m_view('login',$datas);
是否生成HTML文件
 
$config["html"]                =  TRUE;
 
 
 
 
全部代码如下
 
 
[php] 
         
class MY_Loader extends CI_Loader {  
             
    public function m_view($view, $vars = array(), $return = FALSE){  
        return $this->_m_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_object_to_array($vars), '_ci_return' => $return));  
    }  
             
    protected function _m_ci_load($_ci_data){  
        // Set the default data variables   
        foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val){  
            $$_ci_val = isset($_ci_data[$_ci_val]) ? $_ci_data[$_ci_val] : FALSE;  
        }  
         
        $file_exists = FALSE;  
        // Set the path to the requested file   
        if (is_string($_ci_path) && $_ci_path !== ''){  
            $_ci_x = explode('/', $_ci_path);//使用一个字符串分割另一个字符串   
            $_ci_file = end($_ci_x);//将数组的内部指针指向最后一个单元   
        }else{  
            $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);// 返回文件路径的信息   
            $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view;  
            $_ci_html_file=($_ci_ext==='')? $_ci_view.".html" : $_ci_view;//这,生成静态页面的文件名   
                     
            foreach ($this->_ci_view_paths as $_ci_view_file => $cascade){  
                if (file_exists($_ci_view_file.$_ci_file)){  
                    $_ci_path = $_ci_view_file.$_ci_file;  
                    $_ci_html_path=$_ci_view_file.$_ci_html_file;//生成静态页面的路径   
                    $file_exists = TRUE;  
                    break;  
                }  
         
                if ( ! $cascade){  
                    break;  
                }  
            }  
        }  
         
        if ( ! $file_exists && ! file_exists($_ci_path))  
        {  
            show_error('Unable to load the requested file: '.$_ci_file);  
        }  
         
        // This allows anything loaded using $this->load (views, files, etc.)   
        // to become accessible from within the Controller and Model functions.   
        $_ci_CI =& get_instance();  
        foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)  
        {  
            if ( ! isset($this->$_ci_key))  
            {  
                $this->$_ci_key =& $_ci_CI->$_ci_key;  
            }  
        }  
         
        /* 
         * Extract and cache variables 
         * 
         * You can either set variables using the dedicated $this->load->vars() 
         * function or via the second parameter of this function. We'll merge 
         * the two types and cache them so that views that are embedded within 
         * other views can have access to these variables. 
         */  
        if (is_array($_ci_vars))  
        {  
            $this->_ci_cached_vars = array_merge($this->_ci_cached_vars, $_ci_vars);  
        }  
        extract($this->_ci_cached_vars);  
         
        /* 
         * Buffer the output 
         * 
         * We buffer the output for two reasons: 
         * 1. Speed. You get a significant speed boost. 
         * 2. So that the final rendered template can be post-processed by 
         *  the output class. Why do we need post processing? For one thing, 
         *  in order to show the elapsed page load time. Unless we can 
         *  intercept the content right before it's sent to the browser and 
         *  then stop the timer it won't be accurate. 
         */  
        ob_start();  
         
        // If the PHP installation does not support short tags we'll   
        // do a little string replacement, changing the short tags   
        // to standard PHP echo statements.   
        if ( ! is_php('5.4') && (bool) @ini_get('short_open_tag') === FALSE  
            && config_item('rewrite_short_tags') === TRUE && function_usable('eval')  
        )  
        {  
            echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('=', '
        }  
        else  
        {  
            include($_ci_path); // include() vs include_once() allows for multiple views with the same name   
        }  
         
        log_message('debug', 'File loaded: '.$_ci_path);  
         
        // Return the file data if requested   
        if ($_ci_return === TRUE)  
        {  
            $buffer = ob_get_contents();  
            @ob_end_clean();  
            return $buffer;  
        }  
        //在这   
         if(config_item("html")===TRUE){//是否开启生成静态页面   
            $_html_file=@fopen($_ci_html_path,'r');//创建.html文件   
            $buffer = ob_get_contents();  
            @ob_end_clean();  
            if(!$_html_file||(@filesize($_ci_html_path)!=strlen($buffer))){  
                       $_html_file=@fopen($_ci_html_path,'w');  
                       flock($_html_file, LOCK_EX);  
                fwrite($_html_file, $buffer);                    
                flock($_html_file, LOCK_UN);  
                fclose($_html_file);  
            }  
            //echo(filesize($_ci_html_path)."-".strlen($buffer));   
            include($_ci_html_path);  
        }  
                     
         
        /* 
         * Flush the buffer... or buff the flusher? 
         * 
         * In order to permit views to be nested within 
         * other views, we need to flush the content back out whenever 
         * we are beyond the first level of output buffering so that 
         * it can be seen and included properly by the first included 
         * template and any subsequent ones. Oy! 
         */  
        if (ob_get_level() > $this->_ci_ob_level + 1)  
        {  
            ob_end_flush();  
        }  
        else  
        {  
            $_ci_CI->output->append_output(ob_get_contents());  
            @ob_end_clean();  
        }  
    }    
}  
 
       
class MY_Loader extends CI_Loader {
           
    public function m_view($view, $vars = array(), $return = FALSE){
        return $this->_m_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_object_to_array($vars), '_ci_return' => $return));
    }
           
    protected function _m_ci_load($_ci_data){
        // Set the default data variables
        foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val){
            $$_ci_val = isset($_ci_data[$_ci_val]) ? $_ci_data[$_ci_val] : FALSE;
        }
       
        $file_exists = FALSE;
        // Set the path to the requested file
        if (is_string($_ci_path) && $_ci_path !== ''){
            $_ci_x = explode('/', $_ci_path);//使用一个字符串分割另一个字符串
            $_ci_file = end($_ci_x);//将数组的内部指针指向最后一个单元
        }else{
            $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);// 返回文件路径的信息
            $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view;
            $_ci_html_file=($_ci_ext==='')? $_ci_view.".html" : $_ci_view;//这,生成静态页面的文件名
                   
            foreach ($this->_ci_view_paths as $_ci_view_file => $cascade){
                if (file_exists($_ci_view_file.$_ci_file)){
                    $_ci_path = $_ci_view_file.$_ci_file;
                    $_ci_html_path=$_ci_view_file.$_ci_html_file;//生成静态页面的路径
                    $file_exists = TRUE;
                    break;
                }
       
                if ( ! $cascade){
                    break;
                }
            }
        }
       
        if ( ! $file_exists && ! file_exists($_ci_path))
        {
            show_error('Unable to load the requested file: '.$_ci_file);
        }
       
        // This allows anything loaded using $this->load (views, files, etc.)
        // to become accessible from within the Controller and Model functions.
        $_ci_CI =& get_instance();
        foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
        {
            if ( ! isset($this->$_ci_key))
            {
                $this->$_ci_key =& $_ci_CI->$_ci_key;
            }
        }
       
        /*
         * Extract and cache variables
         *
         * You can either set variables using the dedicated $this->load->vars()
         * function or via the second parameter of this function. We'll merge
         * the two types and cache them so that views that are embedded within
         * other views can have access to these variables.
         */
        if (is_array($_ci_vars))
        {
            $this->_ci_cached_vars = array_merge($this->_ci_cached_vars, $_ci_vars);
        }
        extract($this->_ci_cached_vars);
       
        /*
         * Buffer the output
         *
         * We buffer the output for two reasons:
         * 1. Speed. You get a significant speed boost.
         * 2. So that the final rendered template can be post-processed by
         *  the output class. Why do we need post processing? For one thing,
         *  in order to show the elapsed page load time. Unless we can
         *  intercept the content right before it's sent to the browser and
         *  then stop the timer it won't be accurate.
         */
        ob_start();
       
        // If the PHP installation does not support short tags we'll
        // do a little string replacement, changing the short tags
        // to standard PHP echo statements.
        if ( ! is_php('5.4') && (bool) @ini_get('short_open_tag') === FALSE
            && config_item('rewrite_short_tags') === TRUE && function_usable('eval')
        )
        {
            echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('=', '
        }
        else
        {
            include($_ci_path); // include() vs include_once() allows for multiple views with the same name
        }
       
        log_message('debug', 'File loaded: '.$_ci_path);
       
        // Return the file data if requested
        if ($_ci_return === TRUE)
        {
            $buffer = ob_get_contents();
            @ob_end_clean();
            return $buffer;
        }
        //在这
         if(config_item("html")===TRUE){//是否开启生成静态页面
            $_html_file=@fopen($_ci_html_path,'r');//创建.html文件
            $buffer = ob_get_contents();
            @ob_end_clean();
            if(!$_html_file||(@filesize($_ci_html_path)!=strlen($buffer))){
                       $_html_file=@fopen($_ci_html_path,'w');
                       flock($_html_file, LOCK_EX);
                fwrite($_html_file, $buffer);                  
                flock($_html_file, LOCK_UN);
                fclose($_html_file);
            }
            //echo(filesize($_ci_html_path)."-".strlen($buffer));
            include($_ci_html_path);
        }
                   
       
        /*
         * Flush the buffer... or buff the flusher?
         *
         * In order to permit views to be nested within
         * other views, we need to flush the content back out whenever
         * we are beyond the first level of output buffering so that
         * it can be seen and included properly by the first included
         * template and any subsequent ones. Oy!
         */ www.2cto.com
        if (ob_get_level() > $this->_ci_ob_level + 1)
        {
            ob_end_flush();
        }
        else
        {
            $_ci_CI->output->append_output(ob_get_contents());
            @ob_end_clean();
        }
    }  
}
 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477728.htmlTechArticle使用CI来生成静态页面,其实很简单,就像论坛里面说的那样,读出页面中的数据,再写入html文件中,最后显示这个html文件就行了,好吧,上码。...
성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
如何在CodeIgniter中实现自定义中间件如何在CodeIgniter中实现自定义中间件Jul 29, 2023 am 10:53 AM

如何在CodeIgniter中实现自定义中间件引言:在现代的Web开发中,中间件在应用程序中起着至关重要的作用。它们可以用来执行在请求到达控制器之前或之后执行一些共享的处理逻辑。CodeIgniter作为一个流行的PHP框架,也支持中间件的使用。本文将介绍如何在CodeIgniter中实现自定义中间件,并提供一个简单的代码示例。中间件概述:中间件是一种在请求

CodeIgniter中间件:加速应用程序的响应速度和页面渲染CodeIgniter中间件:加速应用程序的响应速度和页面渲染Jul 28, 2023 pm 06:51 PM

CodeIgniter中间件:加速应用程序的响应速度和页面渲染概述:随着网络应用程序的复杂性和交互性不断增长,开发人员需要使用更加高效和可扩展的解决方案来提高应用程序的性能和响应速度。CodeIgniter(CI)是一种基于PHP的轻量级框架,提供了许多有用的功能,其中之一就是中间件。中间件是在请求到达控制器之前或之后执行的一系列任务。这篇文章将介绍如何使用

在CodeIgniter框架中使用数据库查询构建器(Query Builder)的方法在CodeIgniter框架中使用数据库查询构建器(Query Builder)的方法Jul 28, 2023 pm 11:13 PM

在CodeIgniter框架中使用数据库查询构建器(QueryBuilder)的方法引言:CodeIgniter是一个轻量级的PHP框架,它提供了许多功能强大的工具和库,方便开发人员进行Web应用程序开发。其中一个令人印象深刻的功能是数据库查询构建器(QueryBuilder),它提供了一种简洁而强大的方法来构建和执行数据库查询语句。本文将介绍如何在Co

PHP开发:使用 CodeIgniter 实现 MVC 模式和 RESTful APIPHP开发:使用 CodeIgniter 实现 MVC 模式和 RESTful APIJun 16, 2023 am 08:09 AM

随着Web应用程序的不断发展,更加快速和高效地开发应用程序变得非常重要。并且,随着RESTfulAPI在Web应用程序中的广泛应用,对于开发人员来说,必须理解如何创建和实现RESTfulAPI。在本文中,我们将讨论如何使用CodeIgniter框架实现MVC模式和RESTfulAPI。MVC模式简介MVC(Model-Vie

php如何使用CodeIgniter5框架?php如何使用CodeIgniter5框架?Jun 01, 2023 am 11:21 AM

CodeIgniter是一个轻量级的PHP框架,采用MVC架构,支持快速开发和简化常见任务。CodeIgniter5是该框架的最新版本,提供了许多新的特性和改进。本文将介绍如何使用CodeIgniter5框架来构建一个简单的Web应用程序。步骤1:安装CodeIgniter5下载和安装CodeIgniter5非常简单,只需要遵循以下步骤:下载最新版本

如何使用PHP框架CodeIgniter快速搭建一个后台管理系统如何使用PHP框架CodeIgniter快速搭建一个后台管理系统Jun 27, 2023 am 09:46 AM

现今互联网时代,一款深受用户喜爱的网站必须具备简洁明了的前端界面和功能强大的后台管理系统,而PHP框架CodeIgniter则是一款能够让开发者快速搭建后台管理系统的优秀框架。CodeIgniter拥有轻量级、高效率、易扩展等特点,本文将针对初学者,详细说明如何通过该框架快速搭建一个后台管理系统。一、安装配置安装PHPCodeIgniter是一个基于PHP的

使用PHP框架CodeIgniter开发一个实时聊天应用,提供便捷的通讯服务使用PHP框架CodeIgniter开发一个实时聊天应用,提供便捷的通讯服务Jun 27, 2023 pm 02:49 PM

随着移动互联网的发展,即时通信变得越来越重要,越来越普及。对于很多企业而言,实时聊天更像是一种通信服务,提供便捷的沟通方式,可以快速有效地解决业务方面的问题。基于此,本文将介绍如何使用PHP框架CodeIgniter开发一个实时聊天应用。了解CodeIgniter框架CodeIgniter是一个轻量级的PHP框架,提供了一系列的简便的工具和库,帮助开发者快速

PHP实现框架:CodeIgniter入门教程PHP实现框架:CodeIgniter入门教程Jun 18, 2023 pm 10:43 PM

近年来,Web开发技术的进步和全球互联网应用的不断扩大,使得PHP技术应用面越来越广泛。作为一种快速开发的技术,其生态系统也在不断发展壮大。其中,CodeIgniter作为PHP开发领域中著名的框架之一,备受众多开发者的欢迎。本篇文章将介绍CodeIgniter框架的相关知识,以此为初学者提供一个入门的指引。一、什么是CodeIgniter框架?CodeIg

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를 무료로 생성하십시오.

뜨거운 도구

Dreamweaver Mac版

Dreamweaver Mac版

시각적 웹 개발 도구

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

SublimeText3 영어 버전

SublimeText3 영어 버전

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

DVWA

DVWA

DVWA(Damn Vulnerable Web App)는 매우 취약한 PHP/MySQL 웹 애플리케이션입니다. 주요 목표는 보안 전문가가 법적 환경에서 자신의 기술과 도구를 테스트하고, 웹 개발자가 웹 응용 프로그램 보안 프로세스를 더 잘 이해할 수 있도록 돕고, 교사/학생이 교실 환경 웹 응용 프로그램에서 가르치고 배울 수 있도록 돕는 것입니다. 보안. DVWA의 목표는 다양한 난이도의 간단하고 간단한 인터페이스를 통해 가장 일반적인 웹 취약점 중 일부를 연습하는 것입니다. 이 소프트웨어는