如何以另一种形式调用PHP中的函数?

发布于 2024-11-06 05:02:58 字数 272 浏览 1 评论 0原文

我有一个名为 1.php 的页面,其中有一个函数。现在我想在PHP 2中调用2.php中的函数。我写了func();这个函数在1.php中。

但它有这个错误:

Fatal error: Call to undefined function func() in C:\xampp\htdocs\me\2.php on line 2

我该怎么做?

I have a page with name 1.php that has a function in it. Now I want to call the function in 2.php in PHP 2. I wrote func(); this function is in 1.php.

But it has this error:

Fatal error: Call to undefined function func() in C:\xampp\htdocs\me\2.php on line 2

How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

提笔落墨 2024-11-13 05:02:58

使用 require_once() 方法包含包含您需要的函数的脚本,如下所示:

require_once("../path/to/script.php");

一旦您使用上述方法,PHP 基本上会将包含的脚本添加到父脚本中,这将允许您调用函数、方法和变量,就像它们位于父脚本本身中一样。

我会推荐 require_once() 而不是 include()include_once()require(),因为这方法将确保您正在查找的脚本存在,并且仅被调用一次。多次调用同一脚本(通常是偶然发生)可能会导致脚本中出现奇怪的问题。

我希望这有帮助。

Include the script that contains the function you need using the require_once() method, like this:

require_once("../path/to/script.php");

Once you use the above method, PHP basically tacks the included script into the parent script, which will allow you to call functions, methods, and variables, as if they were in the parent script itself.

I would recommend require_once() over include(), include_once(), or require(), because this method will make sure that the script you are looking for exists, and is only called once. Calling the same script more than once (usually happening by accident) can cause strange problems in your script.

I hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文