コード例 #1
0
<?php

namespace Phi\Form\Element;

require './Exception/InvalidAttributeException.php';
require './Element.php';
require './TextNode.php';
require './TextArea.php';
require './Input.php';
require './Text.php';
$text = new TextArea();
$text->addChild(new Text());
$text->addChild(new Text());
$text->addChild(new Text());
echo $text->getHTML();