abstract class postParent { protected $querySQL; public $fetchResult; public $timeAgo; // eg : 2 days ago abstract protected function buildHTML(); public function getSQL() { return $this->querySQL; } public function fetchResult( $result ) { $this->fetchResult = mysql_fetch_assoc( $result ); } public function error() {} } class readArticle extends postParent { public function __construct( $id ) { $this->querySQL =SELECT title, author, text, unixtime FROM post WHERE id = $id ORDER BY unixtime DESC; eof; } public function buildHTML() { return
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn