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 新手。我需要通过 GET 请求使用 PHP 获取本地存储的 xml
我试过这个
if ($_SERVER['REQUEST_METHOD'] == 'POST') { echo "POST Request"; } else if ($_SERVER['REQUEST_METHOD'] == 'GET') { echo "GET Request"; }
所以现在我知道在 POST/GET 中遇到了什么。
下一步要做什么才能获得 XML?
使用该header函数为您正在使用的 XML 输出正确的内容类型,然后readfile.
header
readfile
或者只是用于header输出Location标头并让您的网络服务器处理提供 XML。
Location