私は PHP を学んでおり、Robin Nixon の本を読んでいます。このコードに問題があります:
<?php
class Centre
{
public $centre_name; // String: The name of the centre
public $tagline; // String: The centre's tagline
// Set the centres details. This will later be done through a form.
function set_details()
{
$this->centre_name = "YMCA";
$this->tagline = "Lets all go to the Y";
}
// Display the centres details.
function display()
{
echo "Centre Name - " . $centre->centre_name . "<br />";
echo "Centre Tagline - " . $centre->tagline . "<br />";
}
}
?>
<?php
$centre = new Centre();
$centre->set_details();
$centre->display();
?>
現在、これは次のように出力されています: Center Name - Center Tagline - したがって、変数が設定されています。$this->variable = "whatever"; を使用していますか? 正しく?