當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。