所以我在停止编程几年后尝试学习phpOOP,所以我有点生疏。
无论如何,我有一个 blogEntry 类,因此我可以通过例如回显 $blogEntry->article 来显示已使用 cleanForDisplay 函数清理的博客条目。但是我没有收到任何错误,并且没有显示变量。
谢谢
class blogEntry
{
var $headline;
var $author;
var $date;
var $image;
var $imagecaption;
var $article;
public function __contruct()
{
$this->headline = cleanForDisplay($row['headline']);
$this->author = cleanForDisplay($row['postedby']);
$this->imagecaption = cleanForDisplay($row['imagecaption']);
$this->article = cleanForDisplay($row['article']);
$this->image = $row['image'];
$this->date = $row['date'];
}
}