《PHP实例:CodeIgniter集成smarty的方法详解》要点:
本文介绍了PHP实例:CodeIgniter集成smarty的方法详解,希望对您有用。如果有疑问,可以联系我们。
PHP实例本文实例讲述了CodeIgniter集成smarty的方法.分享给大家供大家参考,具体步骤如下:
PHP实例1.下载smarty
PHP实例解压到ci的libraries目录 如:
PHP实例ci/application/libraries/Smarty-2.6.20
PHP实例2.编写Mysmarty.php 自己的类库文件
PHP实例代码如下:
PHP实例
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
require "Smarty-2.6.20/libs/Smarty.class.php";
/**
* @file system/application/libraries/Mysmarty.php
*/
class Mysmarty extends Smarty
{
function Mysmarty()
{
$this->Smarty();
$config =& get_config();
// absolute path prevents "template not found" errors
$this->template_dir = (!empty($config['smarty_template_dir']) ? $config['smarty_template_dir'] : BASEPATH . 'application/views/');
$this->compile_dir = (!empty($config['smarty_compile_dir']) ? $config['smarty_compile_dir'] : BASEPATH . 'cache/');
//use CI's cache folder
if (function_exists('site_url')) {
// URL helper required
$this->assign("site_url", site_url()); // so we can get the full path to CI easily
}
}
/**
* @param $resource_name string
* @param $params array holds params that will be passed to the template
* @desc loads the template
*/
function view($resource_name, $params = array()) {
if (strpos($resource_name, '.') === false) {
$resource_name .= '.html';
}
if (is_array($params) && count($params)) {
foreach ($params as $key => $value) {
$this->assign($key, $value);
}
}
// check if the template file exists.
if (!is_file($this->template_dir . $resource_name)) {
show_error("template: [$resource_name] cannot be found.");
}
return parent::display($resource_name);
}
} // END class smarty_library
?>
PHP实例3.在autoload.php让ci自动加载smarty
PHP实例
$autoload['libraries'] = array('database', 'mysmarty');
PHP实例或者 使用模板时再自己加载smarty
PHP实例
$this->load->library("mysmarty");
PHP实例4.smarty变量赋值 display模板
PHP实例
$this->mysmarty->assign('test', 'Hello World.');
$this->mysmarty->view('smarty');
PHP实例注:images css 等外部资源文件 放在ci系统文件夹外 网站根目录下
PHP实例最好用:
PHP实例
$this->load->helper('url');
PHP实例base_url()来访问:
PHP实例
base_url()."images/xxx.jpg"
PHP实例不要放到system里
PHP实例补充:小编在这里推荐一款本站的php格式化美化的排版工具帮助大家在以后的PHP程序设计中进行代码排版:
PHP实例php代码在线格式化美化工具:
PHP实例http://tools.jb51.net/code/phpformat
PHP实例另外,由于php属于C语言风格,因此下面这款工具同样可以实现php代码的格式化:
PHP实例C语言风格/HTML/CSS/json代码格式化美化工具:
http://tools.jb51.net/code/ccode_html_css_json
PHP实例更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《php优秀开发框架总结》、《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《Zend FrameWork框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
PHP实例希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助.
转载请注明本页网址:
http://www.vephp.com/jiaocheng/6319.html