本文整理汇总了PHP中ModelBase::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP ModelBase::getId方法的具体用法?PHP ModelBase::getId怎么用?PHP ModelBase::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModelBase
的用法示例。
在下文中一共展示了ModelBase::getId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _deleteModelById
/**
* Delete model by id.
*
* @param ModelBase $model
* @throws ControllerException
*/
protected function _deleteModelById($sql, $model)
{
if ($model->validateForDelete()) {
$stmt = $this->_dbh->prepare($sql);
if (!$stmt) {
throw new ControllerException('Prepared statement failed for ' . $sql);
}
$id = $model->getId();
if (!$stmt->bind_param('i', $id)) {
throw new ControllerException('Binding parameters for prepared statement failed.');
}
if (!$stmt->execute()) {
throw new ControllerException('Failed to execute DELETE statement. (' . $this->_dbh->error . ')');
}
/**
* @SuppressWarnings checkAliases
*/
if (!$stmt->close()) {
throw new ControllerException('Something broke while trying to close the prepared statement.');
}
return;
} else {
throw new ControllerException('Invalid data');
}
}
示例2: temMensagem
/**
* Método genérico que verifica se existe mensagem para o destinatário especificado(Objeto genérico).
* OBS: Os filtros ainda não foram aplicados
* @param ModelBase $detinatario O destinatário
* @paran FiltrosSistema $filtrosSistema Objeto do sistema de filtros
* @return boolean Retorna true caso haja ou false caso não haja
*/
public function temMensagem(ModelBase $detinatario, FiltrosSistema $filtrosSistema = null)
{
$tabela = $this->getTabela();
$query = "select* from {$tabela} ";
$query .= "inner join " . $tabela . "_destinatarios on mensagem={$tabela}.id ";
$query .= "where pk_destinatario=" . $detinatario->getId() . " limit 1";
return (bool) $this->queryStatement($query)->rowCount();
}