찾다
백엔드 개발PHP 튜토리얼刚刚看了几个推荐框架的帖子,蛮多推荐codeigniter的,请恕我直言,那框架实在不敢恭维啊~个人意见,仅供参考。

首先我是用过codeigniter的,刚开始学框架的时候用过一阵子,然后后来公司用thinkphp,就没再用了,用了2个之后,就会有一些对比性。首先这2个框架文件夹容量都比较大,称不上轻量级之类的,我都不怎么看好。
今天单说codeigniter框架
举个官网控制器调用模板的例子

<?phpclass Blog extends CI_Controller { function index() {  $data['title'] = "My Real Title";  $data['heading'] = "My Real Heading";    $this->load->view('blogview', $data); }}?> 

<html><head><title><?php echo $title;?></title></head><body> <h1><?php echo $heading;?></h1></body></html>


感觉这种模式很不好,难道这就是传说中的控制器模板分离?这种模式只能忽悠刚刚入门的那些PHPer,先不论调用smarty之类的来反驳我,只是说他的自身特性,而且什么框架都能结合smarty来用。

以上的代码用PHP的一个函数就能实现了,请查阅extract函数的用法。

很多用codeigniter的PHPer估计就是冲着所谓写法优美去的,可以用连贯写法-> ->

究其实质,并没有对模板(视图)产生有多大的作用,

只是把变量全部先计算出来,换个名称,再在需要的时候,把新名称填入到所需地方。

然后个人在国外网站闲逛的时候呢,发现一个模板,它和codeigniter的这种模式有很大的相似性。模板名未知,就叫他template吧。你们可以看看,就可以对codeigniter原理有大致的了解吧

它的核心模板代码我写一下
<?php//template.php/** * Copyright (c) 2003 Brian E. Lozier (brian@massassi.net) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */class Template {	var $vars; /// Holds all the template variables	var $path; /// Path to the templates	/**	 * Constructor	 *	 * @param string $path the path to the templates	 *	 * @return void	 */	function Template($path = null) {		$this->path = $path;	}	/**	 * Set the path to the template files.	 *	 * @param string $path path to template files	 *	 * @return void	 */	function set_path($path) {		$this->path = $path;	}	/**	 * Set a template variable.	 *	 * @param string $name name of the variable to set	 * @param mixed $value the value of the variable	 *	 * @return void	 */	function set($name, $value) {		$this->vars[$name] = $value;	}	/**	 * Open, parse, and return the template file.	 *	 * @param string string the template file name	 *	 * @return string	 */	function fetch($file) {		extract($this->vars);          // Extract the vars to local namespace		ob_start();                    // Start output buffering		include($this->path . $file);  // Include the file		$contents = ob_get_contents(); // Get the contents of the buffer		ob_end_clean();                // End buffering and discard		return $contents;              // Return the contents	}}/** * An extension to Template that provides automatic caching of * template contents. */class CachedTemplate extends Template {	var $cache_id;	var $expire;	var $cached;	/**	 * Constructor.	 *	 * @param string $path path to template files	 * @param string $cache_id unique cache identifier	 * @param int $expire number of seconds the cache will live	 *	 * @return void	 */	function CachedTemplate($path, $cache_id = null, $expire = 900) {		$this->Template($path);		$this->cache_id = $cache_id ? 'cache/' . md5($cache_id) : $cache_id;		$this->expire   = $expire;	}	/**	 * Test to see whether the currently loaded cache_id has a valid	 * corrosponding cache file.	 *	 * @return bool	 */	function is_cached() {		if($this->cached) return true;		// Passed a cache_id?		if(!$this->cache_id) return false;		// Cache file exists?		if(!file_exists($this->cache_id)) return false;		// Can get the time of the file?		if(!($mtime = filemtime($this->cache_id))) return false;		// Cache expired?		if(($mtime + $this->expire) < time()) {			@unlink($this->cache_id);			return false;		}		else {			/**			 * Cache the results of this is_cached() call.  Why?  So			 * we don't have to double the overhead for each template.			 * If we didn't cache, it would be hitting the file system			 * twice as much (file_exists() & filemtime() [twice each]).			 */			$this->cached = true;			return true;		}	}	/**	 * This function returns a cached copy of a template (if it exists),	 * otherwise, it parses it as normal and caches the content.	 *	 * @param $file string the template file	 *	 * @return string	 */	function fetch_cache($file) {		if($this->is_cached()) {			$fp = @fopen($this->cache_id, 'r');			$contents = fread($fp, filesize($this->cache_id));			fclose($fp);			return $contents;		}		else {			$contents = $this->fetch($file);			// Write the cache			if($fp = @fopen($this->cache_id, 'w')) {				fwrite($fp, $contents);				fclose($fp);			}			else {				die('Unable to write cache.');			}			return $contents;		}	}}?>


在该核心模板类中,同样用的是extract($this->vars);   函数来拆数组。

我们看他的“控制器”用法
<?php//user_list.phprequire_once('template.php');/** * This variable holds the file system path to all our template files. */$path = './templates/';/** * Create a template object for the outer template and set its variables. */$tpl = & new Template($path);$tpl->set('title', 'User List');/** * Create a template object for the inner template and set its variables.  The * fetch_user_list() function simply returns an array of users. */$body = & new Template($path);$body->set('user_list', fetch_user_list());/** * Set the fetched template of the inner template to the 'body' variable in * the outer template. */$tpl->set('body', $body->fetch('user_list.tpl.php')); //这个是直接调用模板/** * Echo the results. */echo $tpl->fetch('index.tpl.php');/** * Just a function to simulate the retrieval of a user list. */function fetch_user_list() {	return array(		array('id' => 1,		      'name' => 'bob',			  'email' => 'bob@mozilla.org',			  'banned' => false),		array('id' => 2,		      'name' => 'judy',			  'email' => 'judy@php.net',			  'banned' => false),		array('id' => 3,		      'name' => 'joe',			  'email' => 'joe@opera.com',			  'banned' => false),		array('id' => 4,			  'name' => 'billy',			  'email' => 'billy@wakeside.com',			  'banned' => true),		array('id' => 5,		      'name' => 'eileen',			  'email' => 'eileen@slashdot.org',			  'banned' => false));}?>


set就是赋值了。然后看它的“视图”是怎么输出的,就基本上完全和codeigniter类似了
//index.tpl.php<html>	<head>		<title><?=$title;?></title>	</head>	<body>		<h2><?=$title;?></h2><?=$body;?>	</body></html>

//user_list.tpl.php<table>	<tr>		<th>Id</th>		<th>Name</th>		<th>Email</th>		<th>Banned</th>	</tr><? foreach($user_list as $user): ?>	<tr>		<td align="center"><?=$user['id'];?></td>		<td><?=$user['name'];?></td>		<td><a href="mailto:<?=$user['email'];?>"><?=$user['email'];?></a></td>		<td align="center"><?=($user['banned'] ? 'X' : ' ');?></td>	</tr><? endforeach; ?></table>


详细的下载地址: http://download.csdn.net/detail/xjl756425616/3984218


回复讨论(解决方案)

Copyright (c) 2003 ....
十年了!!!

就因为今天第 四月一号 吗?

LZ推荐几个框架呗!~

php amp
你怎么看

Copyright (c) 2003 ....
十年了!!!

就因为今天第 四月一号 吗?


技术跟日期有什么关系?只是觉得和codeigniter的方式很类似~



LZ推荐几个框架呗!~

 没什么推荐呀~我就用过那2个,缺乏全面的对比性。

//template.php
/**
 * Copyright (c) 2003 Brian E. Lozier (brian@massassi.net)

回复一下

codeigniter 不是模板引擎
既然是框架,当然他也有自己的模板引擎

10年前的东西,过于陈旧了
你不也想着标新立异吗?

4.1 愚人节

php amp
你怎么看

我下载下来先看看

你这个template与ci的有什么不同?
模板说到底,还不是ob+extract?

php amp
你怎么看


看了,没啥好评论的,和那个模板引擎类似

推荐ci,是ci容易上手,模板,不都是差不多么,

其实框架没有对错,看需求.比如我现在公司项目紧急,来的都是新人,能力参差不齐.CI框架就很适合,有框架使用经验的,用这玩意1,2天基本就能上手开发.
不过,局限性也很明显 ...

我个人认为CI还是蛮好的,mvc分工明细,代码简单清晰明了

CI还可以吧,我一直在用也没发现有什么问题。


php amp
你怎么看


看了,没啥好评论的,和那个模板引擎类似

extra 没有什么不对的,因为99%的框架都是这样来进行模板解析的,比如yii2:
public function renderPhpFile($_file_, $_params_ = [])    {        ob_start();        ob_implicit_flush(false);        extract($_params_, EXTR_OVERWRITE);        require($_file_);        return ob_get_clean();    }


有的甚至用 eval(),比如 dedecms。。。。。。。。。。。。。
성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
PHP의 초록 클래스 또는 인터페이스에 대한 특성과 언제 특성을 사용 하시겠습니까?PHP의 초록 클래스 또는 인터페이스에 대한 특성과 언제 특성을 사용 하시겠습니까?Apr 10, 2025 am 09:39 AM

PHP에서, 특성은 방법 재사용이 필요하지만 상속에 적합하지 않은 상황에 적합합니다. 1) 특성은 클래스에서 다중 상속의 복잡성을 피할 수 있도록 수많은 방법을 허용합니다. 2) 특성을 사용할 때는 대안과 키워드를 통해 해결할 수있는 방법 충돌에주의를 기울여야합니다. 3) 성능을 최적화하고 코드 유지 보수성을 향상시키기 위해 특성을 과도하게 사용해야하며 단일 책임을 유지해야합니다.

DIC (Dependency Injection Container) 란 무엇이며 PHP에서 사용하는 이유는 무엇입니까?DIC (Dependency Injection Container) 란 무엇이며 PHP에서 사용하는 이유는 무엇입니까?Apr 10, 2025 am 09:38 AM

의존성 주입 컨테이너 (DIC)는 PHP 프로젝트에 사용하기위한 객체 종속성을 관리하고 제공하는 도구입니다. DIC의 주요 이점에는 다음이 포함됩니다. 1. 디커플링, 구성 요소 독립적 인 코드는 유지 관리 및 테스트가 쉽습니다. 2. 유연성, 의존성을 교체 또는 수정하기 쉽습니다. 3. 테스트 가능성, 단위 테스트를 위해 모의 객체를 주입하기에 편리합니다.

SPL SplfixedArray 및 일반 PHP 어레이에 비해 성능 특성을 설명하십시오.SPL SplfixedArray 및 일반 PHP 어레이에 비해 성능 특성을 설명하십시오.Apr 10, 2025 am 09:37 AM

SplfixedArray는 PHP의 고정 크기 배열로, 고성능 및 메모리 사용이 필요한 시나리오에 적합합니다. 1) 동적 조정으로 인한 오버 헤드를 피하기 위해 생성 할 때 크기를 지정해야합니다. 2) C 언어 배열을 기반으로 메모리 및 빠른 액세스 속도를 직접 작동합니다. 3) 대규모 데이터 처리 및 메모리에 민감한 환경에 적합하지만 크기가 고정되어 있으므로주의해서 사용해야합니다.

PHP는 파일 업로드를 어떻게 단단히 처리합니까?PHP는 파일 업로드를 어떻게 단단히 처리합니까?Apr 10, 2025 am 09:37 AM

PHP는 $ \ _ 파일 변수를 통해 파일 업로드를 처리합니다. 보안을 보장하는 방법에는 다음이 포함됩니다. 1. 오류 확인 확인, 2. 파일 유형 및 크기 확인, 3 파일 덮어 쓰기 방지, 4. 파일을 영구 저장소 위치로 이동하십시오.

Null Coalescing 연산자 (??) 및 Null Coalescing 할당 연산자 (?? =)은 무엇입니까?Null Coalescing 연산자 (??) 및 Null Coalescing 할당 연산자 (?? =)은 무엇입니까?Apr 10, 2025 am 09:33 AM

JavaScript에서는 NullCoalescingOperator (??) 및 NullCoalescingAssignmentOperator (?? =)를 사용할 수 있습니다. 1. 2. ??= 변수를 오른쪽 피연산자의 값에 할당하지만 변수가 무효 또는 정의되지 않은 경우에만. 이 연산자는 코드 로직을 단순화하고 가독성과 성능을 향상시킵니다.

CSP (Content Security Policy) 헤더 란 무엇이며 왜 중요한가요?CSP (Content Security Policy) 헤더 란 무엇이며 왜 중요한가요?Apr 09, 2025 am 12:10 AM

CSP는 XSS 공격을 방지하고 리소스로드를 제한하여 웹 사이트 보안을 향상시킬 수 있기 때문에 중요합니다. 1.CSP는 HTTP 응답 헤더의 일부이며 엄격한 정책을 통해 악의적 인 행동을 제한합니다. 2. 기본 사용법은 동일한 원점에서 자원을로드 할 수있는 것입니다. 3. 고급 사용량은 특정 도메인 이름을 스크립트와 스타일로드 할 수 있도록하는 것과 같은보다 세밀한 전략을 설정할 수 있습니다. 4. Content-Security Policy 보고서 전용 헤더를 사용하여 CSP 정책을 디버그하고 최적화하십시오.

HTTP 요청 방법 (Get, Post, Put, Delete 등)이란 무엇이며 언제 각각을 사용해야합니까?HTTP 요청 방법 (Get, Post, Put, Delete 등)이란 무엇이며 언제 각각을 사용해야합니까?Apr 09, 2025 am 12:09 AM

HTTP 요청 방법에는 각각 리소스를 확보, 제출, 업데이트 및 삭제하는 데 사용되는 Get, Post, Put and Delete가 포함됩니다. 1. GET 방법은 리소스를 얻는 데 사용되며 읽기 작업에 적합합니다. 2. 게시물은 데이터를 제출하는 데 사용되며 종종 새로운 리소스를 만드는 데 사용됩니다. 3. PUT 방법은 리소스를 업데이트하는 데 사용되며 완전한 업데이트에 적합합니다. 4. 삭제 방법은 자원을 삭제하는 데 사용되며 삭제 작업에 적합합니다.

HTTPS 란 무엇이며 웹 애플리케이션에 중요한 이유는 무엇입니까?HTTPS 란 무엇이며 웹 애플리케이션에 중요한 이유는 무엇입니까?Apr 09, 2025 am 12:08 AM

HTTPS는 HTTP를 기반으로 보안 계층을 추가하는 프로토콜로, 주로 암호화 된 데이터를 통해 사용자 개인 정보 및 데이터 보안을 보호합니다. 작업 원칙에는 TLS 핸드 셰이크, 인증서 확인 및 암호화 된 커뮤니케이션이 포함됩니다. HTTP를 구현할 때는 인증서 관리, 성능 영향 및 혼합 콘텐츠 문제에주의를 기울여야합니다.

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

인기 기사

R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25 : Myrise에서 모든 것을 잠금 해제하는 방법
3 몇 주 전By尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

Atom Editor Mac 버전 다운로드

Atom Editor Mac 버전 다운로드

가장 인기 있는 오픈 소스 편집기

Eclipse용 SAP NetWeaver 서버 어댑터

Eclipse용 SAP NetWeaver 서버 어댑터

Eclipse를 SAP NetWeaver 애플리케이션 서버와 통합합니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

SecList

SecList

SecLists는 최고의 보안 테스터의 동반자입니다. 보안 평가 시 자주 사용되는 다양한 유형의 목록을 한 곳에 모아 놓은 것입니다. SecLists는 보안 테스터에게 필요할 수 있는 모든 목록을 편리하게 제공하여 보안 테스트를 더욱 효율적이고 생산적으로 만드는 데 도움이 됩니다. 목록 유형에는 사용자 이름, 비밀번호, URL, 퍼징 페이로드, 민감한 데이터 패턴, 웹 셸 등이 포함됩니다. 테스터는 이 저장소를 새로운 테스트 시스템으로 간단히 가져올 수 있으며 필요한 모든 유형의 목록에 액세스할 수 있습니다.

SublimeText3 중국어 버전

SublimeText3 중국어 버전

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