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.
以这种方式包含脚本的扩展是个好主意吗?
例如。使用glob从某个目录获取 php 文件列表,并对require_once每个文件执行一次。
require_once
这将在每次生成页面时运行。对性能不利吗?
这会很糟糕,原因有两个:
evil.php
glob
也许考虑使用autoloading。
您可以考虑使用__autoload()代替。
这不是特别好的做法:无论您是否需要它们,您都包含文件。您也无法控制包含/要求处理文件之间任何依赖关系的顺序。如果这些是 PHP 类文件,那么使用自动加载器将是更好的选择。