你好我想知道如何从一些其他php页面中定义的其他函数调用一个php文件中定义的函数。
答案 0 :(得分:3)
首先,您需要使用
包含该文件require_once or require
或
include_once or include
如果该功能不在课堂上,您将直接致电。
require("file.php");
echo getUserName("1")
否则你必须首先创建对象而不是调用方法
require("file.php");
$obj = new User();
echo $obj->getUserName("1");
答案 1 :(得分:3)
这样做,在你需要调用函数的文件中
require_once("file_having_function_that_you_need_to_call.php");
function_name($arguments); // this function is defined in 'file_having_function_that_you_need_to_call.php' file
答案 2 :(得分:1)