本文整理汇总了PHP中DataSource::select方法的典型用法代码示例。如果您正苦于以下问题:PHP DataSource::select方法的具体用法?PHP DataSource::select怎么用?PHP DataSource::select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataSource
的用法示例。
在下文中一共展示了DataSource::select方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: select
/**
* Selects columns to query.
* @param string|array|Table\Column column name or array of column names
* @param string column alias
* @return Table provides a fluent interface
*/
public function select($col, $as = NULL)
{
if (\is_array($col)) {
$col2 = array();
foreach ($col as $k => $c) {
$col2[$this->_translateColumns($k)] = $this->_translateColumns((string) $c);
}
unset($col);
$col = $col2;
} else {
$col = $this->_translateColumns((string) $col);
}
$this->dataSource->select($col, $as);
return $this;
}
示例2: MasterPanel
<body>
<?php
$panel1 = new MasterPanel('panel1');
$panel1->create();
$panel1->start();
$row1 = new RowPanel('row1');
$row1->create();
$row1->start();
$column1 = new ColumnPanel('column1', 6, 'md');
$column1->create();
$column1->start();
?>
<h1>This is a drop down list.</h1>
<?php
$newddlSource = new DataSource('articles', null);
$ddlValues = $newddlSource->select();
$newddl = new DropDownList('test1', 'test2', 'test3', $ddlValues, "title", "id");
$newddl->create();
$newddl->display();
$column1->close();
$column2 = new ColumnPanel('column2', 6, 'md');
$column2->create();
$column2->start();
?>
<h1>This is a text box.</h1>
<?php
$newTB = new TextBox('test1', 'test2', 'test3', 'test4');
$newTB->create();
$newTB->display();
$column2->close();
$row1->close();