简单教程
提交运行
代码编辑器:
<?php class Site { /* 成员变量 */ var $url; var $title; function __construct( $par1, $par2 ) { $this->url = $par1; $this->title = $par2; } function getUrl() { echo $this->url . PHP_EOL; } function getTitle() { echo $this->title . PHP_EOL; } } // 子类扩展站点类别 class Twle extends Site { var $category; function setCate($par) { $this->category = $par; } function getCate() { echo $this->category . PHP_EOL; } } $twle = new Twle('www.twle.cn','简单教程'); $twle->setCate('在线教育'); $twle->getTitle(); $twle->getUrl(); $twle->getCate(); echo '<p>PHP 基础教程 - 简单教程(www.twle.cn)</p>';
运行结果: