Home > Backend Development > PHP Tutorial > 遇到一个奇怪的事情

遇到一个奇怪的事情

WBOY
Release: 2016-06-23 13:51:56
Original
718 people have browsed it

比如我在lib/core/func.php
里面定义了一个function test(){} 然后当前文件能完成调用
但是我在根目录下的
cron.php执行
require_once("lib/core/func.php");
test();
?>
却无法调用函数,这是什么情况


回复讨论(解决方案)

无法调用提示什么啊,包含的文件路径是否正确?

经测试,可以调用

无法调用 ?有提示么?总得给点信息吧

无法调用是是什么意思? 报什么错误。

你test function?面是什??容呢?

<?phprequire_once("/lib/core/func.php");test();?>
Copy after login

改成这样再试试,分清楚以下三者的区别(二三相同)
"/lib/core/func.php""./lib/core/func.php""lib/core/func.php"
Copy after login

如果包含的路径没问题,那就需要看看test();写的是什么。

解决了是@的问题

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template