Я пытаюсь создать объект меню выбора, который я могу использовать повторно:
`Ментор класса {
var $nid;
var $level_id;
var $output;
public function __construct($nid)
{
include 'con.php';
$stmt = $conn->prepare(
'SELECT a.uid, pp.fName, pp.lName FROM primary_profile as pp LEFT JOIN attributes as a ON pp.uid = a.uid WHERE nid = :nid AND :level_id = level_id');
$stmt->execute(array(':nid' => $nid, ':level_id' => 3));
$output .= '<select name="mentor_id">';
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$output .='<option value="'.$row['uid'].'">'.$row['fName']. ' ' .$row['lName'].'</option>';
}
$output .= '</select>';
return $output;
}
public function __toString(){
return $output;
}
} `
На моей странице я звоню:
$mentor_select = new Mentor($nid);
echo $mentor_select;
Это работает, если я помещаю на страницу вне класса, но в классе я получаю ошибку:
Исправляемая фатальная ошибка: метод Mentor :: __ toString () должен возвращать строковое значение
Я знаю, что это означает, что __toString должен вывести строку, но, насколько я вижу, $ output — это строка …
Я новичок в ООП. Пожалуйста, помогите мне с тем, что мне не хватает
$ output = null. Вам нужно установить его как переменную класса внутри ваших функций, используя $ this-> output
public function __construct($nid)
{
$this->output .= '<select name="mentor_id">';
$this->output .= '</select>';
// вернуть $ this-> output;
}
public function __toString(){
return $this->output;
}
<?php
class Mentor {
//Members declared as private may only be accessed by the class that defines the member
//Also you can declare members of a class as protected, and public. Read about that.
private $nid;
private $level_id;
private $output;
public function __construct($nid)
{
$this->level_id = 0;//You can initialize properties to their default values here
$this->nid = $nid;
$this->output = "output value $this->nid";
//return $this->output; constructors should not return values explicitly
//they are used to instantiate the class
}
public function __toString(){
return $this->output;
}
public function getOutput(){
return $this->output;//property output is private, so we define a public method which allows us to read it's value outside this class.
}
}
$mentor = new Mentor(3);// you don't need to return value from your constructor, because you have defined __toString magic method.
echo $mentor;
?>