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 在另一个目录中包含一个文件。有两个目录
第一个目录的名称:'includes',它包含一个名为 sample.php 的文件
第二个目录的名称:'core',它包含 main.php
我需要在 sample.php 中包含 main.php 文件。我使用了以下内容,但它仍然显示警告说不存在此类文件。但是文件在那里。
include '../main.php';
那我现在该怎么办?
试试这个
include dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'core'.DIRECTORY_SEPARATOR.'main.php'
你说过main.php住在core. 然后:
main.php
core
include '../core/main.php';