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


PHP Dao::connexion方法代碼示例

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


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

示例1: createForm

 public function createForm()
 {
     $dao = new Dao();
     $dao->connexion();
     $dao->supprimerFormation($this->IDent);
     $crenAmD = $this->crenOrigin;
     #debut matin
     $crenPmD = $this->nbCreneauxMatin + 1;
     #debut aprem
     $crenAmF = $this->nbCreneauxMatin;
     #fin matin
     $crenPmF = $this->nbCreneaux;
     #fin aprem et journee
     # # # # # # # # # # # # # # # # # # # #
     #   Am -> matin et Pm -> apres_midi   #
     #   D -> debut et F -> fin            #
     #                                     #
     #   $crenAmD, $crenAmF = matin        #
     #   $crenPmD, $crenPmF = apres_midi   #
     #   $crenAmD, $crenPmF = journee      #
     # # # # # # # # # # # # # # # # # # # #
     # ajoutFormation(formation, IDentreprise, creneauDebut, creneauFin)
     #############################
     #          JOURNEE          #
     #############################
     // une personne pour une formation
     if ($this->nbForm == 1 && $this->nbSessions == 1) {
         $this->ArrayForm[] = array($this->form[0], $this->IDent, "", $crenAmD, $crenPmF);
     } else {
         if ($this->nbForm == $this->nbSessions) {
             foreach ($this->form as $value) {
                 $this->ArrayForm[] = array($value, $this->IDent, "", $crenAmD, $crenPmF);
             }
         } else {
             if ($this->nbForm / $this->nbSessions == 2) {
                 $this->autreCas();
             } else {
                 if ($this->nbForm > $this->nbSessions) {
                     $this->casSpecial();
                 } else {
                     if ($this->nbSessions > $this->nbForm) {
                         $cpt = $this->nbSessions;
                         for ($i = 0; $i < ceil($this->nbSessions / $this->nbForm); $i++) {
                             foreach ($this->form as $value) {
                                 if ($cpt > 0) {
                                     $this->ArrayForm[] = array($value, $this->IDent, "", $crenAmD, $crenPmF);
                                 }
                                 $cpt--;
                             }
                         }
                     } else {
                         $this->autreCas();
                     }
                 }
             }
         }
     }
     # ajout a la bdd
     foreach ($this->ArrayForm as $formTest) {
         $dao->ajoutFormation($formTest[0], $formTest[1], $formTest[3], $formTest[4]);
     }
     $dao->deconnexion();
 }
開發者ID:SimylinK,項目名稱:JobDating,代碼行數:63,代碼來源:formationV2.php

示例2: Dao

<?php

header("Content-type: text/html; charset=utf-8");
// vous ne devez rien modifier dans ce script qui vous permet de tester votre classe Dao
require "Dao.php";
try {
    $dao = new Dao();
    $dao->connexion();
    echo "============================ getMotDePasse / verifieMotDePasse ============================<br/><br/>";
    echo $dao->getMotDePasse('etudiant') . "<br/>";
    echo $dao->verifieMotDePasse('etudiant', 'etudiant');
    echo "<br/><br/> ============================ getTypeUtilisateur ============================<br/><br/>";
    echo $dao->getTypeUtilisateur('etudiant') . "<br/>";
    echo $dao->getTypeUtilisateur('entreprise') . "<br/>";
} catch (ConnexionException $e) {
    echo "problème de connexion";
} catch (AccesTableException $e) {
    echo "problème de d'acces à une table";
}
?>

開發者ID:SimylinK,項目名稱:JobDating,代碼行數:20,代碼來源:testDao.php


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