首页 >后端开发 >php教程 >Smarty赋值对象方法,配置简化封装类

Smarty赋值对象方法,配置简化封装类

WBOY
WBOY原创
2016-07-29 09:13:221004浏览

赋值对象方法

html标签写法{$对象名->属性名/方法名()} 一般还是比较少用的



	<meta charset="UTF-8">
	<title>temp3</title>



	<h1>{$man->name}</h1>
	<h1>{$man->say()}</h1>


<?php /*
assgin赋值对象
smarty配置简化(temp,comp地址)封装到类
*/
class man{
	public $name=&#39;八郎&#39;;
	public function say(){
		echo &#39;what?my name is &#39;.$this->name;
	}
}
$man= new man();


<strong>require</strong>('../../smarty3/libs/Smarty.class.php');
<strong>require</strong>('./mysmarty.class.php');
$smarty=new MySmarty();

// 赋值对象
$smarty->assign('man',$man);
$smarty->display('temp4.html');

?>

配置简化封装类 class.php
<?php class MySmarty extends Smarty{
	/*$this->template_dir='./temp';
	$this->compile_dir='./comp';
	因为是父类私有属性,所以不能改写
	smarty内部有开放的接口,setTemplateDir可修改*/
	public function __construct(){
		parent::__construct();
		$this->setTemplateDir('./temp');
		$this->setCompileDir('./comp');
	}
}

以上就介绍了Smarty赋值对象方法,配置简化封装类,包括了require方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn