从其他人调用一个PHP函数?

时间:2010-02-19 10:41:34

标签: php

你好我想知道如何从一些其他php页面中定义的其他函数调用一个php文件中定义的函数。

3 个答案:

答案 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)

在另一个PHP文件上使用include()require()等,然后将函数名称后跟其参数放在括号中。