0

我只是在尝试 OOP 编程,我正在尝试创建一个表单类。我无法打印复选框,我如何检查哪里出错了?

  require_once('form.php');
  $gender = new Checkbox('Please select your gender','gender',array('male','female'));
  echo $gender->show_checkbox();

带有类的文件:

class Inputfield{

  public $id;
  public $options_array;
  public $question;
  public $type;
  function __construct($newquestion,$newid,$newoptions_array){
    $this->question=$newquestion;
    $this->id=$newid;
    $this->type="txt";
    $this->options_array=$newoptions_array;
  }
  public function show_options($options_arr,$type,$id,$classes){
    $output="";
    foreach($options_arr as $option){
        $output.="<label for=\"".$option."\"></label><input name=\"".$option."\" type=\"".$type."\" id=\"".$id."\" class=\"".$classes."\">";
    }
    return $output;
  }
  public function show_question(){
    $output="<h3 class='question'>".$this->vraag."</h3>";
    return $output;
  }
}
class Checkbox extends Inputfield{
  function __construct($newquestion,$newid,$newoptions_array){
    $this->question=$newquestion;
    $this->id=$newid;
    $this->type="checkbox";
    $this->options_array=$newoptions_array;
  }

  public function show_checkbox(){
    $output=show_question();
    $output.=show_options($this->options_array,'checkbox',$this->id,'class');
    return $output;
  }
}
4

2 回答 2

5
  1. 您使用以下方法调用实例方法$this$this->show_options();
  2. 只要它与父类中的构造函数相同,您就不需要复制粘贴整个构造函数
    1. 如果它部分匹配,您可以调用它parent::__construct(...),然后定义一个自定义$this->type="checkbox";
    2. 您不能在运行时定义它,而是将其指定为属性默认值。
于 2013-07-27T12:06:56.050 回答
2

您应该$this在对象上下文中使用。例如。在你的show_checkbox方法中,写:

$output = $this->show_question();
$output .= $this->show_options(...);
于 2013-07-27T12:07:33.893 回答