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.
在我开发我的网站时,我将它托管在我当前网站的一个文件夹中。我的水平不是很好,但这就是我设置它的方式。在我的身体顶部,我有:
<?php include('../includes/menu.php'); ?>
我在 /learn/ 中有我的 page.php,在 /learn/includes 中有类我应该做 ../../ 吗?
PS:我正在制作我的第一个 CMS
不,您只需要:
include('includes/menu.php');
如果includes目录在learn目录中,那么您将使用:
includes
learn
<?php include('./includes/menu.php'); ?>
或者
<?php include('includes/menu.php'); ?>