• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Connexion类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: update

 public function update()
 {
     $connexion = new Connexion();
     $sql = "";
     $sql = "UPDATE \"libertribes\".\"CASE\" set coord = '" . $this->coord . "', occupee_par = '" . $this->occupee_par . "', occupant_id = '" . $this->occupant_id . "', nom_terrain = '" . $this->nom_terrain . "' ";
     $sql .= "WHERE id = '" . $this->id . "'";
     return $connexion->Requete($sql);
 }
开发者ID:domiboo,项目名称:libertribes_fromneosys,代码行数:8,代码来源:class_caza.php


示例2: delete

 public function delete($type, $id)
 {
     $db = new Connexion();
     $class = $type;
     $table = strtolower($class);
     $prefixe = substr($table, 0, 3) . "_";
     $query = "DELETE FROM " . $table;
     $query .= " WHERE " . $prefixe . "id = " . $id;
     $request = $db->query($query);
     $db = null;
 }
开发者ID:athomix,项目名称:ecommerce,代码行数:11,代码来源:classModel.php


示例3: validationFormulaireSuppressionServices

function validationFormulaireSuppressionServices()
{
    $id = $_POST['idServicesSuppr'];
    $requete = 'Delete From services Where id = ' . $id . '';
    Connexion::exec($requete);
    echo '<META http-equiv="refresh" content="0; URL=?page=services&supprOk">';
}
开发者ID:lelenaic,项目名称:Monitoring-CLF,代码行数:7,代码来源:fonctions_validationFormulaireAjoutServices.php


示例4: getInstance

 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new Connexion();
     }
     return self::$_instance;
 }
开发者ID:bosoy83,项目名称:keywords-analyzer,代码行数:7,代码来源:class.connexion.php


示例5: menuUtilisateur

function menuUtilisateur($menuParent_id = null)
{
    $utilisateur = $_SESSION['utilisateur'];
    $query = 'select * ' . 'from menu m, utilisateurtype_menu um ' . 'where um.utilisateurtype_id=' . $utilisateur['utilisateurtype_id'] . ' and m.id=um.menu_id';
    if (is_null($menuParent_id)) {
        $query .= ' and m.menuparent_id is null';
    } else {
        $query .= ' and m.menuparent_id=' . $menuParent_id;
    }
    $query .= ' order by um.ordre';
    $menus = Connexion::table($query);
    $html = '';
    foreach ($menus as $menu) {
        if ($menu['route'] == '') {
            $url = '#';
        } else {
            $url = '.?route=' . $menu['route'];
        }
        $enfants = menuUtilisateur($menu['id']);
        if ($enfants != '') {
            $class = ' class="treeview"';
        } else {
            $class = '';
        }
        $html .= '<li' . $class . '>
                <a href="' . $url . '">
                <i class="fa ' . $menu['icon'] . '"></i> <span>' . $menu['label'] . '</span>
                </a>';
        if ($enfants != '') {
            $html .= '<ul class="treeview-menu">' . $enfants . '</ul>';
        }
        $html .= '</li>';
    }
    return $html;
}
开发者ID:lelenaic,项目名称:erp-PPE2,代码行数:35,代码来源:menu.php


示例6: getAll

 /**
  * Fonction de récupération de l'ensemble des pages du site. 
  * 
  * Permet de récupérer l'ensemble des pages du site.
  * @return results correspond à l'ensemble des pages trouvées.
  */
 public static function getAll($niveau)
 {
     $querry = 'SELECT * FROM page  WHERE droit<=:niveau';
     Connexion::executeQuerry($querry, array(':niveau' => array($niveau, PDO::PARAM_INT)));
     $results = Connexion::getResults();
     return $results;
 }
开发者ID:hlefe,项目名称:sosprema,代码行数:13,代码来源:PageGateway.php


示例7: getAll

 /**
  * Fonction de récupéreration l'ensemble des adresse.
  * 
  * Récupère l'ensemble des adresse de la table, cette fonction n'est pas utilisée pour le moment.
  * @return result retourne le résultat de la recherche de l'adresse.
  */
 public static function getAll()
 {
     $querry = 'SELECT * FROM adresse';
     Connexion::executeQuerry($querry);
     $results = Connexion::getResults();
     return $results;
 }
开发者ID:hlefe,项目名称:sosprema,代码行数:13,代码来源:AdresseGateway.php


示例8: execute

 public function execute()
 {
     $db = Connexion::getConnexion();
     $statement = $db->prepare("DELETE FROM shows WHERE id = ?");
     $statement->bindValue(1, $_POST["id"], PDO::PARAM_INT);
     $statement->execute();
 }
开发者ID:phil714,项目名称:mel,代码行数:7,代码来源:DeleteDigestAction.php


示例9: valid_route

function valid_route()
{
    //Récupération du formulaire.
    $nom = $_POST['nom'];
    $prenom = $_POST['prenom'];
    $adresse = $_POST['adresse'];
    $codePostal = $_POST['codePostal'];
    $ville = $_POST['ville'];
    $mail = $_POST['mail'];
    $numTel = $_POST['numTel'];
    if ($_SESSION['utilisateur']['utilisateurtype_id'] == 1) {
        $organisation = $_POST['organisation'];
        $organisationRecupId = Connexion::queryFirst("SELECT id FROM organisation WHERE libelle='" . $organisation . "'");
        $organisationId = $organisationRecupId['id'];
    } else {
        $organisationId = $_SESSION['utilisateur']['entreprise_id'];
    }
    $organisation = $_POST['organisation'];
    $organisationId = Connexion::queryFirst("SELECT id FROM organisation where libelle='" . $organisation . "'");
    //vérification si aucune zone de texte est restée vide pour envoi à la BDD.
    if ($nom != "" and $prenom != "" and $adresse != "" and $codePostal != "" and $ville != "" and $mail != "" and $numTel != "") {
        $query = 'INSERT INTO client (nom, prenom, adresse, codePostal, ville, entreprise_id, mail, numTelephone)' . "VALUES ('" . $nom . "', '" . $prenom . "', '" . $adresse . "', '" . $codePostal . "', '" . $ville . "','.{$organisationId['id']}.', '" . $mail . "', '" . $numTel . "')";
        Connexion::exec($query);
        include ROOT . 'AdminLTE/alerte.php';
    } else {
        $tableAjout = [$nom, $prenom, $adresse, $codePostal, $ville, $mail, $numTel, $organisation];
        formulaire($tableAjout, true);
    }
}
开发者ID:lelenaic,项目名称:erp-PPE2,代码行数:29,代码来源:ajoutIndex.php


示例10: produit_route

function produit_route()
{
    $produits = Connexion::table('SELECT libelleProduit,reference,fournisseur.nom,poids,produit.id
                            FROM produit, fournisseur
                            WHERE fournisseur.id=produit.fournisseur_id');
    include ROOT . 'AdminLTE/kernel/produit/liste.php';
}
开发者ID:lelenaic,项目名称:erp-PPE2,代码行数:7,代码来源:liste.php


示例11: liste_route

function liste_route()
{
    $employe = Connexion::table('select * from employe order by id');
    $poste = Connexion::table('select * from poste');
    $entreprise = Connexion::table('select * from organisation');
    include ROOT . 'AdminLTE/grh/employe/liste.php';
}
开发者ID:lelenaic,项目名称:erp-PPE2,代码行数:7,代码来源:employe.php


示例12: getAdwordsData

 public function getAdwordsData()
 {
     $targetingIdeaService = $this->user->GetService('TargetingIdeaService', ADWORDS_VERSION);
     $selector = new TargetingIdeaSelector();
     $selector->requestType = 'STATS';
     $selector->ideaType = 'KEYWORD';
     $selector->requestedAttributeTypes = array('SEARCH_VOLUME', 'COMPETITION');
     $selector->paging = new Paging(0, AdWordsConstants::RECOMMENDED_PAGE_SIZE);
     $selector->localeCode = 'fr_FR';
     $selector->currencyCode = 'EUR';
     $language = new Language();
     $language->id = '1002';
     $selector->searchParameters[] = new LanguageSearchParameter($language);
     $relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
     $relatedToQuerySearchParameter->queries = $this->keyword['keyword'];
     $selector->searchParameters[] = $relatedToQuerySearchParameter;
     $page = $targetingIdeaService->get($selector);
     if (sizeof($page->entries) > 0) {
         $vol = $page->entries[0]->data[0]->value->value == 0 ? 5 : $page->entries[0]->data[0]->value->value;
         $comp = (double) round($page->entries[0]->data[1]->value->value, 2);
         Connexion::getInstance()->query("UPDATE keyword SET search = '" . $vol . "', competition = '" . round($comp, 2) . "' WHERE id_keyword = '" . $this->keyword['id_keyword'] . "' ");
     } else {
         Connexion::getInstance()->query("UPDATE keyword SET search = '5', competition = '0' WHERE id_keyword = '" . $this->keyword['id_keyword'] . "' ");
     }
 }
开发者ID:bosoy83,项目名称:keywords-analyzer,代码行数:25,代码来源:class.adwords.php


示例13: __construct

 public function __construct($immatricule, $nom, $prenom, $zone)
 {
     $this->con = Connexion::connect();
     $this->immatricule = $immatricule;
     $this->nom = $nom;
     $this->prenom = $prenom;
     $this->zone = $zone;
 }
开发者ID:benzirab,项目名称:SMT,代码行数:8,代码来源:BDE.php


示例14: __construct

 public function __construct($dbhost, $dbname, $user, $password)
 {
     $this->host = $dbhost;
     $this->dbname = $dbname;
     $this->user = $user;
     $this->password = $password;
     $this->bdd = Connexion::getConnexion($dbhost, $dbname, $user, $password);
 }
开发者ID:KevinAlberca,项目名称:Sup_ORM,代码行数:8,代码来源:DatabaseChecker.php


示例15: modifierEnfant

 /**
  * Fonction de modification d'un enfant. 
  * 
  * Permet de modifier un enfant.
  * @param idEnfant correspond à l'id de l'enfant.
  * @param prenom correspond au prenom de l'enfant à ajouter.
  * @param dateDeNaissance correspond à la date de naissance de l'enfant.
  * @param termeNaissance correspond à la terme de la naissance de l'enfant si prema ou non.
  */
 public static function modifierEnfant($idEnfant, $prenom, $dateNaissance, $termeNaissance)
 {
     $querry = 'UPDATE enfant SET :prenom = prenom,
                                  :dateNaissance = dateNaissance,
                                  :termeNaissance = :termeNaissance
                           WHERE  :idEnfant = idEnfant';
     Connexion::executeQuerry($querry, array(':idEnfant' => array($idEnfant, PDO::PARAM_INT), ':prenom' => array($prenom, PDO::PARAM_STR), ':dateNaissance' => array($dateNaissance, PDO::PARAM_STR), ':termeNaissance' => array($termeNaissance, PDO::PARAM_STR)));
 }
开发者ID:hlefe,项目名称:sosprema,代码行数:17,代码来源:EnfantGateway.php


示例16: __construct

 public function __construct($idTerrain)
 {
     $bdd = Connexion::getInstance();
     $query = $bdd->getData('SELECT * FROM terrain WHERE idTerrain=' . $idTerrain);
     $data = $query->fetch(PDO::FETCH_ASSOC);
     $this->_idTerrain = $data['idTerrain'];
     $this->_emplacement = $data['emplacementTerrain'];
 }
开发者ID:dmartins06,项目名称:TMYNDM,代码行数:8,代码来源:Terrain.php


示例17: __construct

 public function __construct($host, $dbName, $login, $password)
 {
     $this->host = $host;
     $this->dbName = $dbName;
     $this->login = $login;
     $this->password = $password;
     $this->dbpdo = Connexion::getInstance($host, $dbName, $login, $password)->getConnexion();
 }
开发者ID:doorgets,项目名称:cms,代码行数:8,代码来源:CRUD.php


示例18: logs

function logs($action, $resultat)
{
    $id = isset($_SESSION['id']) ? $_SESSION['id'] : 0;
    $date = date('Y-m-d');
    $heure = date('H:i:s');
    $ip = $_SERVER['REMOTE_ADDR'];
    Connexion::exec('insert into logs (utilisateurs_id,action,resultat,date,heure,ip) values (\'' . $id . '\',\'' . $action . '\',\'' . $resultat . '\',\'' . $date . '\',\'' . $heure . '\',\'' . $ip . '\')');
}
开发者ID:lelenaic,项目名称:Monitoring-CLF,代码行数:8,代码来源:fonctions.php


示例19: identification

 public function identification()
 {
     Connexion::getInstance()->query("SELECT name FROM user\r\n                    WHERE mail = '" . $this->login . "'\r\n                    AND password = '" . md5($this->pass) . "' ");
     $nom = Connexion::getInstance()->result();
     if ($nom) {
         return true;
     }
     return false;
 }
开发者ID:bosoy83,项目名称:keywords-analyzer,代码行数:9,代码来源:class.login.php


示例20: __construct

 function __construct($nomFichier)
 {
     $this->nomFichier = $nomFichier;
     $tampon = explode("_", $nomFichier);
     //ID DU SONDAGE EN SEPARANT A PARTIR DU _
     $this->id = $tampon[1];
     $this->cnx = Connexion::seConnecter("mysql", "localhost", "sondage", "root", "");
     $this->mesQuestions = $this->getQuestions();
 }
开发者ID:nga28,项目名称:Haroun,代码行数:9,代码来源:CreerURLSondageController.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Console类代码示例发布时间:2022-05-23
下一篇:
PHP ConnectorUtils类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap