本文整理汇总了PHP中Params::getData方法的典型用法代码示例。如果您正苦于以下问题:PHP Params::getData方法的具体用法?PHP Params::getData怎么用?PHP Params::getData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Params
的用法示例。
在下文中一共展示了Params::getData方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: browse
function browse($p, $pagesize, $pos)
{
#取最上圖片資料
if ($this->func == "COM") {
$keys = array("COM_IMG1");
}
$d = new Params($this->db_conn);
$keydata = array();
foreach ($keys as $k) {
$d->getData($k);
$keydata[$k] = clone $d;
}
$this->assign('keydata', $keydata);
$this->assign('func', $this->func);
#取最列表片資料
$c = new Comb($this->db_conn);
$rows = $c->getList($p);
$total = mysql_num_rows($rows);
$limit_str = $this->limit($total, $pagesize, $pos);
$lists = $c->getListArray($p, $limit_str);
$query_str = "";
$this->assign('p', $p);
$this->assign('data', $c);
$this->assign('lists', $lists);
$this->assign('content_page', $this->template . $this->list_tpl);
$this->pager($lists, $query_str);
$this->output();
}
示例2: batchDelete
function batchDelete($p, $ids)
{
$c = new Params($this->db_conn);
$i = 0;
for ($i = 0; $i < count($ids); $i++) {
$c->getData($ids[$i]);
$c->delete();
}
$this->gotoURL("params.php?action=list");
//$this->browse($p);
}