我正在尝试调用我在 2 个单独的 .php 文件中拥有的 2 个函数。假设 function1() 在 my_functions1.php 中,function2() 在 my_functions2.php 中。
假设我在同一个文件夹中有一个名为 main 的第三个文件.php我想包含来自 my_functions1.php 和 my_functions2.php 的函数。
像这样的东西
<?php
include 'my_functions1.php';
include 'my_functions2.php';
function1();
function2();
?>
由于某种原因,我不能有 2 个包含文件。我是PHP的新手,除了将所有功能放在一个文件中之外,谷歌上似乎没有任何关于此的内容。
尝试使用 include_once。您可能会意外地多次包含同一文件。