-1

我在 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 执行相同操作的等价物。

我应该使用什么功能来模拟这样的事情?

4

1 回答 1

0

您可以使用 PHP CURL库以这种方式上传文件。检查本指南:

http://blogs.digitss.com/php/curl-php/posting-or-uploading-files-using-curl-with-php/

于 2013-06-25T18:41:27.133 回答