当前位置: 首页>>代码示例>>PHP>>正文


PHP Connector::Insert方法代码示例

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


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

示例1: addDocument

 public static function addDocument($document, $options)
 {
     $filename = $document["name"];
     // Check for upload error
     if ($document["error"]) {
         throw new InvalidArgumentException("Une erreur s'est produite lors de l'envoi du fichier (" . $document["error"] . ")");
     }
     // Determining the folder to put the document in
     if (preg_match("/A[12]/", $options["promo"])) {
         $destination = "A12/" . $filename;
     } elseif (preg_match("/A[345]/", $options["promo"])) {
         $destination = "A345/" . $filename;
     } else {
         $destination = $filename;
     }
     if (!move_uploaded_file($document["tmp_name"], __DIR__ . "/../../pdf/" . $destination)) {
         error_log("Error when trying to write " . __DIR__ . "/../../pdf/" . $destination);
     }
     foreach ($options as $key => $value) {
         if (empty($value) && $key != "promo") {
             throw new InvalidArgumentException("La colonne `" . $key . "` doit être définie");
         }
     }
     $bdd = new Connector();
     $bdd->Insert("document", array("rang" => $options["rang"], "promo" => $options["promo"], "libelle" => $options["libelle"], "fichier" => $destination));
     $document = $bdd->Select("*", "document", array("where" => array(array("fichier", "=", $destination))))[0];
     return array("path" => $destination, "id" => $document["id"]);
 }
开发者ID:babolivier,项目名称:isen-rentree,代码行数:28,代码来源:document.class.php

示例2: addPromo

 public static function addPromo($promo)
 {
     $bdd = new Connector();
     $bdd->Insert("promo", array("id_promo" => $promo["id"], "libelle" => $promo["libelle"]));
 }
开发者ID:babolivier,项目名称:isen-rentree,代码行数:5,代码来源:promo.class.php


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