标签: php file-get-contents
有谁知道以下事情的解决方案: 这是我传递给我的file-get-contents函数的代码片段
但是当我查看我的浏览器开发工具时,我看到了:
有谁知道为什么我的file_get_contents中的代码没有被执行但是代码行被打印了?
答案 0 :(得分:0)
file_get_contents只获取原始文件。您应该使用include()或require()代替。
file_get_contents
include()
require()