本文整理汇总了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();
}
}
示例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>';
}
示例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');
}
}