本文整理汇总了PHP中Categorie::selectById方法的典型用法代码示例。如果您正苦于以下问题:PHP Categorie::selectById方法的具体用法?PHP Categorie::selectById怎么用?PHP Categorie::selectById使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Categorie
的用法示例。
在下文中一共展示了Categorie::selectById方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Categorie
<?php
//Insertion d'un nouveau message
if (isset($_POST['insert'], $_POST['contenu'], $_GET['id'])) {
$id_topic = $_GET['id'];
$manager = new Categorie($link);
$topic = $manager->selectById($id_topic);
try {
$message = $topic->create($_POST['contenu']);
} catch (Exception $e) {
$error = $e->getMessage();
}
if (empty($error)) {
// $_SERVER
// url du fichier index.php
header('Location: ' . str_replace('index.php', '', $_SERVER['SCRIPT_NAME']) . 'home/' . $topic->getCategory()->getCategory() . '/' . urlencode($topic->getTitre()));
exit;
}
} else {
//Récupération des infos message, topic, category
if (isset($_GET['id'])) {
$id = $_GET['id'];
$manager = new Topic($link);
$message = $manager->selectById($id);
$topic = $message->getTopic();
$categorie = $topic->getCategory();
$categoryName = $topic->getCategory()->getCategory();
$topicName = urlencode($topic->getTitre());
}
//Mise à jour d'un message
if (isset($_POST['update'], $_POST['contenu'])) {
示例2: UserManager
<?php
$manager = new UserManager($link);
$user = $manager->selectById($_SESSION['id']);
$manager = new Categorie($link);
$topic = $manager->selectById($_GET['id']);
if (isset($topic)) {
require './views/modify-topic.phtml';
}
示例3: getTopic
public function getTopic()
{
$manager = new Categorie($this->link);
$topic = $manager->selectById($this->id_topic);
return $topic;
}