CI中view的重写 代码_PHP教程
推荐:如何在PHP语言中使用JSON从5.2版本开始,PHP原生提供json_encode()和json_decode()函数,前者用于编码,后者用于解码。 一、json_encode() 该函数主要用来将数组和对象,转换为json格式。先看一个数组转换的例子: $arr = array ('a'=1,'b'=2,'c'=3,'d'=4,'e'=5); echo json_encode($arr); 结
<!--?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* common class
*
* @package default
* @author mark
**/
class common extends CI_Controller {
public function __construct(){
parent::__construct();
}
/**
* 重写view 使能改变模板文件后缀等
*
* @return void
* @author meigong
**/
function view($file, $data, $flag = false){
if (true === $flag) {
return $this--->load->view($file.'.tpl', $data, true);
}else {
echo $this->load->view($file.'.tpl', $data, true);
}
}
}
?>
分享:PHP 转义正则表达式字符: preg_quotepreg_quote 转义正则表达式字符 string preg_quote ( string $str [, string $delimiter = NULL ] ) preg_quote()需要参数str并向其中 每个正则表达式语法中的字符前增加一个反斜线. 这通常用于你有一些运行时字符串 需要作为正则表达式进行匹配的时候. 正则表达式特殊
- 相关链接:
- 教程说明:
PHP教程-CI中view的重写 代码。