本文整理汇总了PHP中mysql::update方法的典型用法代码示例。如果您正苦于以下问题:PHP mysql::update方法的具体用法?PHP mysql::update怎么用?PHP mysql::update使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mysql
的用法示例。
在下文中一共展示了mysql::update方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testUpdate
/**
* @covers ITE\mysql->update
* @depends testInsert
*/
public function testUpdate($id)
{
$table = 'log';
$values = array("log = 'Tested!'");
$this->assertTrue($this->object->update($table, $values, $id));
$this->assertFalse($this->object->update($table, $values, '\'S'));
}
示例2: run
function run()
{
global $_out;
if (ap::isCurrentModule($this)) {
ap::addMessage($this->getMessage());
switch ($action = param('action')) {
case 'active':
if ($row = $this->getRow()) {
$mysql = new mysql();
$state = !(param('active') == 'on');
$res = $mysql->update($this->table, array('active' => $state ? '1' : '0'), '`id`=' . $row);
if (!$res) {
$state = !$state;
}
if (param('ajax')) {
ap::ajaxResponse($state ? 'on' : 'off');
} else {
$this->redirect('active_' . ($res ? 'ok' : 'fail'));
}
}
break;
case 'move':
if (($row = $this->getRow()) && ($pos = param('pos')) && ($rl = $this->getList()) && $rl->moveRow($row, $pos)) {
$this->redirect('move_ok');
} else {
$this->redirect('move_fail');
}
break;
case 'delete':
if ($this->onDelete($action)) {
$this->redirect('delete_ok');
} else {
$this->redirect('delete_fail');
}
break;
case 'update':
case 'apply_update':
if ($this->onUpdate($action)) {
$this->redirect('update_ok');
} else {
$this->redirect('update_fail');
}
break;
case 'add':
case 'apply_add':
if ($this->onAdd($action)) {
$this->redirect('add_ok');
} else {
$this->redirect('add_fail');
}
break;
case 'edit':
if ($this->onEdit($action)) {
$_out->addSectionContent($this->getForm($action)->getRootElement());
}
break;
case 'new':
if ($this->onNew($action)) {
$_out->addSectionContent($this->getForm($action)->getRootElement());
}
break;
default:
if ($rl = $this->getList()) {
$rl->build();
$_out->addSectionContent($rl->getRootElement());
}
}
}
}
示例3: update
function update($values, $cond)
{
return parent::update($this->getTable(), $values, $cond);
}
示例4: update
/**
* Обновить данные таблицы из массива
* @param array $data
* @param string $where
* @internal param string $table
* @return bool|int <type>
*/
public function update($data, $where = null)
{
return $this->_db->update($this->table, $data, $where);
}