我在 C# 中有以下脚本可以将一些 XML 上传到服务器
using (System.Net.WebClient myWebClient = new System.Net.WebClient())
{
myWebClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
// Post and return Xml
byte[] bytes = myWebClient.UploadData(url, "POST", System.Text.Encoding.ASCII.GetBytes(Xml_to_Send));
Xml_Returned = System.Text.Encoding.ASCII.GetString(bytes);
bytes = null;
}
但我需要一些对 PHP 执行相同操作的等价物。
我应该使用什么功能来模拟这样的事情?