本文整理汇总了PHP中Read::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Read::update方法的具体用法?PHP Read::update怎么用?PHP Read::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Read
的用法示例。
在下文中一共展示了Read::update方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ExeStatus
public function ExeStatus($PostId, $PostStatus)
{
$this->Post = (int) $PostId;
$this->Data['post_status'] = (string) $PostStatus;
$Read = new Read('ws_posts');
$this->Data['post_id'] = $this->Post;
$Read->update($this->Data);
}
示例2: handle_update
function handle_update()
{
$read = new Read(intval($_POST['id']));
if ($read->is_valid) {
$read['status'] = $_POST['status'];
if ($read->update()) {
$title_author = '<b>' . $read['title'] . '</b> by ' . $read['author'];
notice("Status updated sucessfully for {$title_author}.");
} else {
error("An error occured updating {$title_author}");
}
}
}
示例3: handle_create
function handle_create()
{
$read = new Read(intval($_POST['read_id']));
if ($read->is_valid) {
$params = array('notes' => $_POST['content']);
if ($read->update($params)) {
notice('Updated!');
} else {
error_log('update failed');
}
} else {
error('No Read by that id.');
}
}
示例4: ExeStatus
/**
* <b>Ativa/Inativa Empresa:</b> Informe o ID da empresa e o status e um status sendo 1 para ativo e 0 para
* rascunho. Esse méto ativa e inativa as empresas!
* @param INT $PostId = Id do post
* @param STRING $PostStatus = 1 para ativo, 0 para inativo
*/
public function ExeStatus($EmpresaId, $EmpresaStatus)
{
$this->Empresa = (int) $EmpresaId;
$this->Data['empresa_status'] = (string) $EmpresaStatus;
$this->Data['empresa_id'] = $this->Empresa;
$Update = new Read('app_empresas');
$Update->update($this->Data, "empresa_id = :empresa_id");
}
示例5: update
public function update($Termos = null)
{
return $this->Read->update($this->Dados, $Termos);
}