其中 PHP“set_include_path”是有效吗?
我想将 my_path
添加到 include_path
并相对于 my_path
添加 include
文件。
在我网站的主 PHP 文件中使用 set_include_path
设置 include_path
是否足够,或者我必须在每个 PHP 文件中执行此操作?
I would like to add my_path
to include_path
and include
files relatively to my_path
.
Is that enough to set the include_path
using set_include_path
in the main PHP file of my website, or I must do this in every PHP file ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必为每个包含的文件重复此操作。另一种方法是使用 .htaccess 文件:
You don't have to repeat it for each included file. An alternative approach would be using .htaccess files: