Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所有页面都重定向到index.php我读取 URI 的位置并重定向到页面。一旦我定义了一个常量index.php:
index.php
define('ROOT_DIR', __DIR__);
如何将此常量传递给其他页面?
如果我使用
header('location:www.mysite.com/page_requested.php')
该常量未定义,我无法使用它。
谢谢
将包含常量的文件包含在您想要的任何位置。您可以使用包含所有常量的名为 config.php 的文件,并将其包含在您需要的任何地方。