當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Usuarios::setId方法代碼示例

本文整理匯總了PHP中Usuarios::setId方法的典型用法代碼示例。如果您正苦於以下問題:PHP Usuarios::setId方法的具體用法?PHP Usuarios::setId怎麽用?PHP Usuarios::setId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Usuarios的用法示例。


在下文中一共展示了Usuarios::setId方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getObjectFromResult

 public function getObjectFromResult($resultSet)
 {
     if (!$resultSet) {
         return NULL;
     }
     $usuarios = new Usuarios();
     try {
         $usuarios->setId($resultSet['id']);
     } catch (Exception $e) {
         echo $e->getMessage();
         throw new Exception("UsuariosDAO - Banco de dados desatualizado, não existe coluna [id]");
     }
     try {
         $usuarios->setLogin($resultSet['login']);
     } catch (Exception $e) {
         echo $e->getMessage();
         throw new Exception("UsuariosDAO - Banco de dados desatualizado, não existe coluna [login]");
     }
     try {
         $usuarios->setEmail($resultSet['email']);
     } catch (Exception $e) {
         echo $e->getMessage();
         throw new Exception("UsuariosDAO - Banco de dados desatualizado, não existe coluna [email]");
     }
     try {
         $usuarios->setNome($resultSet['nome']);
     } catch (Exception $e) {
         echo $e->getMessage();
         throw new Exception("UsuariosDAO - Banco de dados desatualizado, não existe coluna [nome]");
     }
     try {
         $usuarios->setAtivo($resultSet['ativo']);
     } catch (Exception $e) {
         echo $e->getMessage();
         throw new Exception("UsuariosDAO - Banco de dados desatualizado, não existe coluna [ativo]");
     }
     try {
         $usuarios->setSenha($resultSet['senha']);
     } catch (Exception $e) {
         echo $e->getMessage();
         throw new Exception("UsuariosDAO - Banco de dados desatualizado, não existe coluna [senha]");
     }
     return $usuarios;
 }
開發者ID:RMCampos,項目名稱:Projerp,代碼行數:44,代碼來源:usuariosDAO.php

示例2: Usuarios

require_once 'Usuarios.php';
$usuarios = new Usuarios($conexao);
if (isset($_GET['id'])) {
    $id = $_GET['id'];
    $result = $usuarios->findId($id);
    $user = $result['user'];
    $nome = $result['nome'];
    $privi = $result['privilegio'];
}
if (isset($_POST['enviar'])) {
    $id = $_POST['id'];
    $user = $_POST['user'];
    $nome = $_POST['nome'];
    $privi = $_POST['privi'];
    $password = $_POST['password'];
    $usuarios->setId($id)->setNome($nome)->setUser($user)->setPassword($password)->setPrivi($privi);
    if ($usuarios->alterar()) {
        header("location:SisUsuarios.php");
    } else {
        echo "<script>alert('Erro ao alterar Registro!')</script>";
    }
}
?>


<html>
    <head>
        <title>Usuários</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" type="text/css" href="bootstrap.min.css">
開發者ID:perrony,項目名稱:PHPPdo,代碼行數:31,代碼來源:EditUsuario.php


注:本文中的Usuarios::setId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。