本文整理汇总了PHP中util::form方法的典型用法代码示例。如果您正苦于以下问题:PHP util::form方法的具体用法?PHP util::form怎么用?PHP util::form使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类util
的用法示例。
在下文中一共展示了util::form方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
public function index()
{
if ($this->message) {
echo '<p>' . $this->message . '</p>';
}
util::form($this);
echo '<input type="submit" name="action[set]" value="Set" />';
echo '<br />';
echo $this->name->render();
echo $this->date->render();
echo '<br />';
echo '<table>';
$total = 0;
foreach ($this->entry as $i => $entry) {
echo '<tr>';
echo '<td>';
$entry['acc_id']->render();
echo '</td>';
echo '<td>';
$entry['amount']->render();
echo '</td>';
$total += (double) $entry['amount']->value();
echo '<td><input type="submit" name="action[remove][' . $i . ']" value="Remove" /></td>';
echo '</tr>';
}
echo '<tr><td>Total</td><td>' . sprintf('%1.2f', $this->total) . '</td><td></td></tr>';
echo '</table>';
echo '<input type="submit" name="action[add]" value="Add Entry" />';
echo '<br />';
echo '<input type="submit" name="action[commit]" value="Commit" />';
echo '<input type="submit" name="action[cancel]" value="Cancel" />';
echo '</form>';
}
示例2: in
public function in()
{
echo $this->message;
util::form($this);
$this->name->render();
$this->pass->render();
echo '<input type="submit" value="submit" />';
echo '</form>';
}
示例3: index
public function index()
{
util::form($this);
$this->acc_id->render();
$this->name->render();
echo '<input type="submit" name="action[save]" value="Save" />';
echo '<input type="submit" name="action[cancel]" value="Cancel" />';
echo '</form>';
}