gpt4 book ai didi

php - 如何从另一个文件调用php函数?

转载 作者:行者123 更新时间:2023-12-03 18:46:50 24 4
gpt4 key购买 nike

我想从我的 index.php 调用我的自定义 php 函数,但该函数位于另一个文件中。何做那?

例子 :

索引.php :

<?php

myCustomFunction();

?>

函数.php
<?php

function myCustomFunction(){
//some codes
}

?>

谢谢你。

最佳答案

您只需要include另一个文件:

include('function.php');
index.php :
<?php

include('function.php');

myCustomFunction();
include PHP 中的函数就地插入包含在传递给其参数的文件中的代码。

有关更多详细信息和替代方法,请参阅 PHP 手册:

http://php.net/manual/en/function.include.php

http://php.net/manual/en/function.include-once.php

http://php.net/manual/en/function.require.php

http://php.net/manual/en/function.require-once.php

关于php - 如何从另一个文件调用php函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42657319/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com