本文整理汇总了PHP中Constants::getListKey方法的典型用法代码示例。如果您正苦于以下问题:PHP Constants::getListKey方法的具体用法?PHP Constants::getListKey怎么用?PHP Constants::getListKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Constants
的用法示例。
在下文中一共展示了Constants::getListKey方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
public function update($table, $value, $id)
{
$message = $this->validationForm($table, $value);
if ($message['error'] === 1) {
$message['error'] = '<span class="alert alert-danger">Something is wrong!</span>';
return $message;
}
$listkey = Constants::getListKey()[$table];
if (!empty($this->listToAdd($listkey, $value))) {
$listToAdd = $this->listToAdd($listkey, $value);
} else {
return '<span class="alert alert-danger">Something is wrong</span>';
}
if ($this->model->update($table, $listToAdd, "id=" . $id)) {
if (isset($_SESSION['data'])) {
unset($_SESSION['data']);
}
return 1;
}
}
示例2: define
<?php
require_once "../model/session.php";
require_once '../model/models.php';
define('LIMIT', 500);
$controllerCalled = 1;
$_SESSION['page'] = "report";
$report = new Model();
$tours = new Tours();
$list = $report->_list("tours", "*");
$listTours = $tours->_list("tours", "*");
// La liste des titres des colonnes de la table tours.
$toursKeys = Constants::getListKey()['tours'];
//la taille du tableau tours dans la base
$size = sizeof($list);
//On divise le table par 500 pour ne pas afficher tout les donnees.
$div = $size > LIMIT ? $size / LIMIT : 1;
$limit = LIMIT;
for ($i = 0; $i < sizeof($list); $i++) {
foreach ($list[$i] as $key => $value) {
if ($key == "guardtours_id") {
$guardtours_id = $list[$i][$key];
$guard_id = $report->getBy("guardtours", "guard_id", "id", $guardtours_id);
$nom = $report->getBy("guard", "nom", "id", $guard_id);
$prenom = $report->getBy("guard", "prenom", "id", $guard_id);
$list[$i][$key] = $nom . " " . $prenom;
}
}
}
// $mention = $tours->getMention("09:00:00", 1);
include "../vue/report.php";