业精于勤,荒于嬉。

摘要: <?phpclass Hello { private $content = "HelloMyPHP"; public $name; public function getContent() { return $this->content; } function __construct($name) { $this->name = $name; echo "__construct<br/>" . $this->name; } function __destruct() { echo "<br/>__ 阅读全文
posted @ 2012-04-17 15:27 叶知泉 阅读(426) 评论(0) 推荐(0) 编辑