Maison > Questions et réponses > le corps du texte
P粉3402642832023-08-10 10:54:24
Par exemple, créez un nouveau fichier et nommez-le config.php
(ou tout autre nom de votre choix) et écrivez-y ces lignes comme suit :
<?php //`__DIR__` 是一个代表当前脚本所在目录的魔术常量 //根据您的项目结构,调整路径拼接(`BASE_PATH .`)。 define('BASE_PATH', __DIR__ . '/'); ?>
Vous pouvez désormais facilement inclure config.php
dans n'importe quel fichier qui doit utiliser un chemin de base !
<?php require_once 'config.php'; if ($_SESSION['role'] === 'user') { header('location: ' . BASE_PATH . 'index.php'); } else { header('location: ' . BASE_PATH . 'admin/index.php'); } ?>