当前位置: 首页>>代码示例>>PHP>>正文


PHP Crud::ultimoId方法代码示例

本文整理汇总了PHP中Crud::ultimoId方法的典型用法代码示例。如果您正苦于以下问题:PHP Crud::ultimoId方法的具体用法?PHP Crud::ultimoId怎么用?PHP Crud::ultimoId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Crud的用法示例。


在下文中一共展示了Crud::ultimoId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: CriarUsuario

 public function CriarUsuario()
 {
     if (count($this->erros) > 0) {
         return false;
     } else {
         $v = new Crud();
         $v->setTabela('users');
         $ok = $v->inserir(array("nome" => $this->nome, "email" => $this->email, "senha" => $this->senha));
         //echo_pre($ok); die;
         if ($ok) {
             $this->idInserido = $v->ultimoId();
             return true;
         } else {
             return false;
         }
     }
 }
开发者ID:romulo1984,项目名称:dehbora,代码行数:17,代码来源:Usuario.php

示例2: avaliar

function avaliar()
{
    $app = Slim::getInstance();
    $user = $app->view()->getData('user');
    //print_r($_POST);die;
    $titulo = $_POST['dados']['titulo'];
    $permalink = $_POST['dados']['permalink'];
    $data = $_POST['dados']['data'];
    $nota = $_POST['nota'];
    //1 - Verifica se a notícia já foi cadastrada
    $b_noticia = new Crud();
    $b_noticia->setTabela("noticias");
    $noticia_result = $b_noticia->consultar(array("id"), "permalink = '" . $permalink . "'");
    $noticia_result = $noticia_result->fetch(PDO::FETCH_ASSOC);
    if ($noticia_result == "") {
        //Se não existir esta notícia cadastrada, cadastra Notícia
        $add_noticia = new Crud();
        $add_noticia->setTabela("noticias");
        $add = $add_noticia->inserir(array("titulo" => $titulo, "permalink" => $permalink, "pubDate" => $data));
        if ($add) {
            //Se adicionou com sucesso, retorna ID da notícia adicionada
            $id_noticia = $add_noticia->ultimoId();
        } else {
            //Se houver erro ao adicionar, retorna erro e encerra o script
            echo "Erro ao atribuir nota";
            exit;
        }
    } else {
        //Se já existir notícia, busca seu ID
        $id_noticia = $noticia_result['id'];
    }
    //2 - Verifica se já deu a nota
    $b_nota = new Crud();
    $b_nota->setTabela("notas");
    $nota_result = $b_nota->consultar(array("id"), "id_user = " . $user['id'] . " AND id_noticia = " . $id_noticia);
    $nota_result = $nota_result->fetch(PDO::FETCH_ASSOC);
    if ($nota_result == "") {
        //Se não deu nota ainda, dá a nota
        $add_nota = new Crud();
        $add_nota->setTabela("notas");
        $nota_add = $add_nota->inserir(array("nota" => $nota, "id_user" => $user['id'], "id_noticia" => $id_noticia));
        if (!$nota_add) {
            //Se não conseguir add a nota, retorna um erro e encerra script
            echo "Erro ao atribuir nota";
            exit;
        }
    } else {
        //Se já deu, então atualiza a nota
        $atualiza_nota = new Crud();
        $atualiza_nota->setTabela("notas");
        $up_nota = $atualiza_nota->atualizar(array("nota" => $nota), "id = " . $nota_result['id']);
        if ($up_nota != 1) {
            //Se não for possível atualizar a nota, retorna erro
            echo "Erro ao atribuir nota";
            exit;
        }
    }
    $app->redirect(URL_BASE . '/templates/avaliacao.php?permalink=' . base64_encode($permalink) . '&iduser=' . $user['id']);
}
开发者ID:romulo1984,项目名称:dehbora,代码行数:59,代码来源:routes.php


注:本文中的Crud::ultimoId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。