本文整理匯總了PHP中Province::get方法的典型用法代碼示例。如果您正苦於以下問題:PHP Province::get方法的具體用法?PHP Province::get怎麽用?PHP Province::get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Province
的用法示例。
在下文中一共展示了Province::get方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: updatePosition
function updatePosition()
{
$positionList = $this->input->post('positionList');
$idList = $this->input->post('idList');
$locations = new Province();
for ($i = 0; $i < count($idList); $i++) {
$locations->where("id", $idList[$i]);
$locations->get();
$locations->position = $positionList[$i];
$locations->save();
$locations->clear();
}
redirect("admin/locations/listAll/");
}
示例2: save
function save($object = '', $related_field = '')
{
if (!$this->exists()) {
$o = new Province();
$o->select_max('position');
$o->get();
if (count($o->all) != 0) {
$max = $o->position + 1;
$this->position = $max;
} else {
$this->postion = 1;
}
}
return parent::save($object, $related_field);
}