当前位置: 首页>>代码示例>>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;未经允许,请勿转载。