为类定义方法和属性
<?php
//缺省值须是常量,不可以是变量,或类成员或方法调用
class A
{
// 属性(成员)声明
public $aa = '缺省值';
public $bb=array("苹果","葡萄","香蕉");
// 方法声明
public function echo_aa() {
echo $this->aa;//not $this->$aa
}
}
$a=new A;
$a->echo_aa();//缺省值
?>
//缺省值须是常量,不可以是变量,或类成员或方法调用
class A
{
// 属性(成员)声明
public $aa = '缺省值';
public $bb=array("苹果","葡萄","香蕉");
// 方法声明
public function echo_aa() {
echo $this->aa;//not $this->$aa
}
}
$a=new A;
$a->echo_aa();//缺省值
?>
本文转自 xcf007 51CTO博客,原文链接:http://blog.51cto.com/xcf007/106086,如需转载请自行联系原作者