数年間プログラミングをやめてからphpOOPを学ぼうとしているので、ちょっとサビ気味です。
とにかく、私はクラス blogEntry を持っているので、たとえば $blogEntry->article を echo することで、関数 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'];
}
}