摘要: class human{ public $name;//全局的属性; private $age;//该类中私有的属性,可通过function __set(){}方法进行复制,这个方法存在时可以自动调用; protected $height;//可在该类及其子类中使用的属性; function __construct(){ //可初始化类中属性的值; $this->name="wang"; } function eat($w){//任意方法 echo $w } function __destrut(){ //释放使用的属性; $this->name=NULL; . 阅读全文
posted @ 2013-07-10 00:13 Kimer 阅读(138) 评论(0) 推荐(0) 编辑