gpt4 book ai didi

php - require_once 适用于 Windows 但不适用于 Linux

转载 作者:太空宇宙 更新时间:2023-11-04 09:08:24 25 4
gpt4 key购买 nike

在我的 Windows XP 系统上,require_once('/stuff.php'); 工作正常,但在 linux 服务器上它说找不到文件,直到我将它更改为 require_once(' stuff.php'); 是否可以更改一些设置以使其在 linux 上运行?

最佳答案

你可能想要:

require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'stuff.php');

dirname(__FILE__) 将返回当前目录,然后附加操作系统特定的分隔符和文件名。

关于php - require_once 适用于 Windows 但不适用于 Linux,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4817234/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com