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.
是否允许这样做:
main.php:
main.php
//some code.... include "main.php"; //some more code....
这不会引起问题吗?
PHP 允许这种情况发生吗?如果确实如此,这样做的原因是什么?
是的,这是可能的,但不是一个好主意或好的设计。
如果您的包含是无条件的(即不受if语句保护),php 最终将因内存或 CPU 时间限制而终止。
if
如果你声明任何类或函数,你就会遇到问题。
因为您不能两次声明它们。我不明白为什么你需要做这样的事情。有什么特别的原因吗?