PHP - with require_once/include/require, the path is relative to what?(PHP - 使用require_once/include/require,路径是相对于什么的?)
问题描述
当在 "index.php" 上时,我执行 require_once("/all_fns.php").
when on "index.php", I do require_once("/all_fns.php").
"all_fns.php" 本身需要具有相对于 all_fns.php(本身)路径的文件.
"all_fns.php" itself requires files with paths relative to all_fns.php (itself).
我的问题是,我应该在 all_fns 上写相对于 all_fns.php 还是 index.php 的路径?
My question is, should I write the paths on all_fns relative to all_fns.php or to index.php?
这让我很困惑,想把它弄清楚.
This is all very confusing to me and wanted to get it straight.
推荐答案
它们被视为相对于 index.php.
如果你需要引用一个相对于包含的文件,使用
If you need to reference a file relative to the include, use
__DIR__."/relative/file.php";
这篇关于PHP - 使用require_once/include/require,路径是相对于什么的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP - 使用require_once/include/require,路径是相对于什么的?
基础教程推荐
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何替换eregi() 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
