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.
include 和 required_once() 有什么区别?我想包含另一个 php 文件,让我们在 example1.php 中考虑作为 sample2.php。这是使用的最佳实践。
用最简单的话来说,您的 PHP 页面仍然可以在include没有被检索的文件的情况下运行,如果它是一个required_once并且它试图获取的文件不存在或不在正确的目录中,整个页面将失败装载
include
required_once
这些还有更多:
require_once
require
include_once
once如果多次调用它,那些只会在页面中包含一次文件,而没有的函数将once调用它们的次数与它们在代码中的次数一样多。
once