0

私はphpを学んでいて、フォームを作成するためのこの単純なクラスを作りました。

class form {

private $pole= array();

function addText($name, $label){

    $pole[] = new input($name, 'text', $name, $label);
}

function create(){
    foreach ($this->pole as $polozka) {
        $polozka->addInput();
    }
}
}

class input{

private $name;
private $type;
private $id;
private $label;

/*
 * $name, $type, $id, $label
 */
function __construct($name, $type, $id, $label){
    $this->name=$name;
    $this->type=$type;
    $this->id=$id;
    $this->label=$label;
}

function addInput(){
    echo "<label for='".$this->name.": '>".$this->label."<input type='".$this->type."' name='".$this->name."' id='".$this->id."'/>";
}

}

そして、私はそれをこのように呼んでいます

<?php include "form.php";

$form = new form();
$form->addText('jmeno', 'Jméno');
$form->addText('prijmeni', 'Příjmení');
$form->create();
?>

しかし、それはまったく何もしません。:(何が悪いのかわからない?

問題は、オブジェクトを配列で呼び出すか、配列に保存することにあると思います。私はJavaからそのようにしていました。しかし、はい、それは違います。

4

2 に答える 2

2
function addText($name, $label){

    $this->pole[] = new input($name, 'text', $name, $label);
}

いいえ

function addText($name, $label){

    $pole[] = new input($name, 'text', $name, $label);
}

おそらくpublic、クラスのメソッドに可視性を追加する必要があります...別の方法で定義されていない限り、とにかくデフォルトでパブリックになりますが、明示的に定義された可視性はすぐに明らかになります

于 2013-11-06T18:16:44.823 に答える
1

あなたはあなたのクラスメンバーを参照していません:

function addText($name, $label){
    $pole[] = new input($name, 'text', $name, $label);
}

次のようにする必要があります。

function addText($name, $label){
    $this->pole[] = new input($name, 'text', $name, $label);
}
于 2013-11-06T18:16:45.667 に答える