我想从我的index.php调用我的自定义php函数,但该函数位于另一个文件中。何呢?
示例:
index.php:
<?php
myCustomFunction();
?>
function.php
<?php
function myCustomFunction(){
//some codes
}
?>
谢谢。
答案 0 :(得分:2)
您只需要include
其他文件:
include('function.php');
index.php
:
<?php
include('function.php');
myCustomFunction();
PHP中的include
函数将传递给其参数的文件中包含的代码就地插入。
有关详细信息和替代方法,请参阅PHP手册:
http://php.net/manual/en/function.include.php
http://php.net/manual/en/function.include-once.php
答案 1 :(得分:0)
按如下方式更改index.php:
<?php
include "function.php";
myCustomFunction();
>?
(这是基于两个文件都在同一目录中的假设,否则你必须在include
行中添加文件路径)