当前位置: 首页>>代码示例>>PHP>>正文


PHP mysql::update方法代码示例

本文整理汇总了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'));
 }
开发者ID:fran-diaz,项目名称:ite,代码行数:11,代码来源:mysqlTest.php

示例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());
                 }
         }
     }
 }
开发者ID:PapaKot,项目名称:Horowitz,代码行数:69,代码来源:apArticles.php

示例3: update

 function update($values, $cond)
 {
     return parent::update($this->getTable(), $values, $cond);
 }
开发者ID:PapaKot,项目名称:Horowitz,代码行数:4,代码来源:mysqlTable.php

示例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);
 }
开发者ID:pnixx,项目名称:boot,代码行数:11,代码来源:model.php


注:本文中的mysql::update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。