本文整理汇总了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"]);
}
示例2: addPromo
public static function addPromo($promo)
{
$bdd = new Connector();
$bdd->Insert("promo", array("id_promo" => $promo["id"], "libelle" => $promo["libelle"]));
}