PHP 中使用 Smarty 之一:变量的使用(3)
变量的运算:<{$num1+$num2}>
<br />
变量的混合运算:<{$num1+$num2*$num2/$num1+44}>
<br />
</body>
</html>
Persion.class.php
<?php
class Persion {
public $name; //为了访问方便,设定为public
public $age;
//定义一个构造方法
public function __construct($name,$age) {
$this->name = $name;
$this->age = $age;
}
//定义一个hello() 方法,输出名字和年龄
public function hello() {
return '您好!我叫'.$this->name.',今年'.$this->age.'岁了。';
}
}
?>
执行结果:
变量的访问:This is body content!
索引数组的访问:abc def ghi
索引二维数组的访问:abc def ghi jkl mno pqr
关联数组的访问:111 222 333
关联二维数组的访问:111 222 333 444
关联和索引混合数组的访问:111 222 333 444
对象中成员变量的访问:小易10
对象中方法的访问:您好!我叫小易,今年10岁了。
变量的运算:30
变量的混合运算:94
摘自:lee 的专栏
相关新闻>>
- 发表评论
-
- 最新评论 更多>>