本文整理汇总了PHP中DAO::excluir方法的典型用法代码示例。如果您正苦于以下问题:PHP DAO::excluir方法的具体用法?PHP DAO::excluir怎么用?PHP DAO::excluir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DAO
的用法示例。
在下文中一共展示了DAO::excluir方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: excluirPorId
public function excluirPorId($id)
{
$nome_tabela = $this->converterClasseParaTabela();
$avaliacaoDAO = new AvaliacaoDAO();
$comentarioDAO = new ComentarioDAO();
$imagemDAO = new ImagemDAO();
$videoDAO = new VideoDAO();
switch ($nome_tabela) {
case "Eventos":
$avaliacaoDAO->excluirPorIdEvento($id);
$comentarioDAO->excluirPorIdEvento($id);
$imagemDAO->excluirPorIdEvento($id);
$videoDAO->excluirPorIdEvento($id);
break;
case "Estabelecimentos":
$avaliacaoDAO->excluirPorIdEstabelecimento($id);
$comentarioDAO->excluirPorIdEstabelecimento($id);
$imagemDAO->excluirPorIdEstabelecimento($id);
$videoDAO->excluirPorIdEstabelecimento($id);
break;
}
parent::excluir($id, 'id', $nome_tabela);
}
示例2: excluirPorId
public function excluirPorId($id)
{
$estabelecimentoDAO = new EstabelecimentoDAO();
$eventoDAO = new EventoDAO();
$estabelecimentoDAO->excluirPorIdEstacao($id);
$eventoDAO->excluirPorIdEstacao($id);
parent::excluir($id, 'id', 'Estacoes');
}
示例3: excluirPorIdEvento
public function excluirPorIdEvento($id)
{
parent::excluir($id, 'id_evento', $this->converterClasseParaTabela());
}