如果我有大量函数,最好将它们全部保存在一个大文件中,或者将它们分成几个相关函数的文件。更好是指更高效的可维护性和处理请求的服务器。
例如,现在我将所有文件都放在一个名为include.php
. 但是拥有一个包含的包含文件会更明智,例如:
<?php
include('/functions/user.php');
include('/functions/admin.php');
include('/functions/content.php');
include('/functions/nav.php');
include('/functions/database.php');
include('/functions/other_junk.php');
?>