Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想访问在另一台服务器上的某个 php 文件中编写的某些函数。我通过使用包含文件file_get_contents。我设置allow_url_include和allow_url_fopen为真。它打开文件。但我仍然无法访问包含文件中定义的函数。
file_get_contents
allow_url_include
allow_url_fopen
我得到的错误是:
致命错误:调用未定义的函数contact()
任何人都可以指导我该怎么做。
可以使用包含功能
include 'http://www.example.com/file.php?foo=1&bar=2';
http://www.php.net/include