- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
<?php
class VIEW_View
{
private $_path;
private $_template;
private $_var = array();
public function __construct($path = '')
{
$this->_path = $_SERVER['DOCUMENT_ROOT'] . $path;
}
public function set($name, $value)
{
$this->_var[$name] = $value;
}
public function __get($name)
{
if (isset($this->_var[$name])) return $this->_var[$name];
return '';
}
public function display($template, $strip = true)
{
$this->_template = $this->_path . $template;
if (!file_exists($this->_template)) die('Шаблона ' . $this->_template . ' не существует!');
ob_start();
include($this->_template);
echo ($strip) ? $this->_strip(ob_get_clean()) : ob_get_clean();
}
private function _strip($data)
{
$lit = array("\\t", "\\n", "\\n\\r", "\\r\\n", " ");
$sp = array('', '', '', '', '');
return str_replace($lit, $sp, $data);
}
public function xss($data)
{
if (is_array($data)) {
$escaped = array();
foreach ($data as $key => $value) {
$escaped[$key] = $this->xss($value);
}
return $escaped;
}
return htmlspecialchars($data, ENT_QUOTES);
}
}
?>
Тема: "foreach в шаблонизаторе." http://www.php.ru/forum/viewtopic.php?t=29937
Заголовок в блоге: "Меня зовут — Анатолий Ларин - Архив блога - Прощай Smarty или простой шаблонизатор"
http://larin.in/archives/16
Devzirom 08.01.2011 14:21 # 0
guest 20.04.2012 17:37 # 0
Lure Of Chaos 08.01.2011 14:36 # +2
Lure Of Chaos 08.01.2011 14:45 # +1
а где прогресс, где революция?
за что ругали, то опять же изобретают - нелогично же
Vasiliy 09.01.2011 00:14 # 0
DanxilLs 09.01.2011 07:35 # 0
lucidfoxGovno 20.04.2012 18:31 # +1
http://www.spongywonder.com/Content/images/large_carpenter.jpg
LightBlack 20.04.2012 18:43 # 0
guest 22.06.2013 11:27 # 0
guest 22.06.2013 12:32 # 0
guest 14.02.2012 10:44 # 0
Это чЁ не работает?
Насрать говна мы аш за глаза ....
guest 14.02.2012 12:48 # 0