當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Manager::update方法代碼示例

本文整理匯總了PHP中Manager::update方法的典型用法代碼示例。如果您正苦於以下問題:PHP Manager::update方法的具體用法?PHP Manager::update怎麽用?PHP Manager::update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Manager的用法示例。


在下文中一共展示了Manager::update方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: update

 /**
  * Update tenant password.
  * 
  * <code>
  * 	php artisan tenancy::manage:update <tenant_name> <new_db_pass>
  * </code>
  * 
  * @param	array	$args
  * @return	bool
  */
 public function update($args = array())
 {
     // If we don't have any arguments then tell the user how to
     // properly format the command.
     if (count($args) !== 2) {
         echo 'Usage: php artisan tenancy::manage:update <tenant_name> <new_db_pass>';
         return false;
     }
     list($name, $new_pass) = $args;
     try {
         Manager::update($name, $new_pass);
         echo "DONE! Tenant ({$name}) password has been updated.";
     } catch (Exception $e) {
         echo $e->getMessage();
     }
 }
開發者ID:aalluri-navaratan,項目名稱:laravel-multi-tenant-old,代碼行數:26,代碼來源:manage.php

示例2: array

 function update_psw_save()
 {
     $password = get_post_value('password');
     $id = get_post_value('id');
     $status = get_post_value('status');
     $field = array('password' => md5($password));
     $m = new Manager();
     $m->clear();
     $m->setTable('vcb_manage_user');
     //設置表名
     $m->setField($field);
     ///設置更新字段及值,(鍵值數組)
     $m->setWhere('id', '=', $id);
     //設置Where條件
     $m->update();
     //返回
     echo '<br>操作成功,<a href="index" >返回</a><br>';
 }
開發者ID:koery,項目名稱:Vcanbuy,代碼行數:18,代碼來源:ManagerController.class.php

示例3: array

 function update_psw_save()
 {
     $password = get_post_value('password');
     $id = get_post_value('id');
     $field = array('password' => md5($password));
     $m = new Manager();
     $m->clear();
     $m->setTable('vcb_manage_user');
     //設置表名
     $m->setField($field);
     ///設置更新字段及值,(鍵值數組)
     $m->setWhere('id', '=', $id);
     //設置Where條件
     $data = $m->update();
     if ($data) {
         $this->assign('message', true);
         $this->setReturnType('message');
     }
 }
開發者ID:koery,項目名稱:Vcanbuy,代碼行數:19,代碼來源:ManagerController.class.php


注:本文中的Manager::update方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。