HTTP post XML file to a certain address_PHP tutorial
Recently I did a small task, the group sending function of SMS and MMS. The partner provides an interface. We only need to put the content to be sent into an XML, and then http post to that address. The curl library is used here, and the usage is simply recorded.
The following is a small program for mass text messaging. First, get the number from an uploaded phone number text, and then get the content and send it.
<?php if($_FILES['phone_num']['error']>0) { echo 'Problem:'; switch ($_FILES['phone_num']['error']) { //1表示文件超过php配置里的大小限制 case 1: echo 'File exceeded max in phi.ini!';break; //2表示超过最大限制 case 2: echo 'File exceeded max_file_size';break; //3表示部分上传 case 3: echo 'File only partially uploaded';break; //4表示没有上传 case 4: echo 'No file upload'; break; } exit; } // 如果文件类型非纯文本,输出提示 if ($_FILES['phone_num']['type'] != 'text/plain') { echo 'Problem:file is not plain text'; exit; } // 转移文件路径,转移失败,输出错误 $dir = dirname(__file__).'/upload/'; $filename = $_FILES['phone_num']['name']; $savepath = "$dir/$filename"; if (is_uploaded_file($_FILES['phone_num']['tmp_name'])) { $state = move_uploaded_file($_FILES['phone_num']['tmp_name'], $savepath); //如果上传成功,预览 if($state) { //echo "<img src='$filename' alt='$filename' /> "; } /** if (!move_uploaded_file($_FILES['phone_num']['tmp_name'], $savepath)) { echo 'Problem could not move file to destination directory'; exit; } */ } else { echo 'Problem :possible file upload attack file:'; echo $_FILES['phone_num']['name']; exit; } $pn = file_get_contents($savepath); $content = $_POST['content']; $xml_data = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <TaskDataTransfer4EReq xmlns="http://www.aspirehld.com/iecp/TaskDataTransfer4EReq"> <eid>3100</eid> <username>lwxkk</username> <password>1234567</password> <src>106581036177</src> <destmsisdn>'.$pn.'</destmsisdn> <content type="sms"> <title>'.$content.'</title> </content> </TaskDataTransfer4EReq>'; $url = 'http://www.bkjia.com/service/taskSubmit';//接收XML地址 $header = "Content-type: text/xml";//定义content-type为xml $ch = curl_init(); //初始化curl curl_setopt($ch, CURLOPT_URL, $url);//设置链接 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置是否返回信息 curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//设置HTTP头 curl_setopt($ch, CURLOPT_POST, 1);//设置为POST方式 curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);//POST数据 $response = curl_exec($ch);//接收返回信息 if(curl_errno($ch)){//出错则显示错误信息 print curl_error($ch); } curl_close($ch); //关闭curl链接 echo $response;//显示返回信息 ?>
Sending multimedia messages in bulk is a little more troublesome. You need to name and package text, pictures, mms.smil and other files according to the requirements, but the principle of sending is still the same.
<?php // 对彩信包的处理繁琐但是简单,这里省略 $encoded = chunk_split(base64_encode($file_content)); $xml_data = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <TaskDataTransfer4EReq xmlns="http://www.aspirehld.com/iecp/TaskDataTransfer4EReq"> <eid>310</eid> <username>lwxk</username> <password>123456</password> <src>106581036177</src> <destmsisdn>'.$pn.'</destmsisdn> <content type="mms"> <title>'.$title.'</title> <mmsfile>'.$encoded.'</mmsfile> </content> </TaskDataTransfer4EReq>'; $url = 'http://www.bkjia.com/service/taskSubmit';//接收XML地址 $header = "Content-type: text/xml";//定义content-type为xml $ch = curl_init(); //初始化curl curl_setopt($ch, CURLOPT_URL, $url);//设置链接 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置是否返回信息 curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//设置HTTP头 curl_setopt($ch, CURLOPT_POST, 1);//设置为POST方式 curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);//POST数据 $response = curl_exec($ch);//接收返回信息 if(curl_errno($ch)){//出错则显示错误信息 print curl_error($ch); } curl_close($ch); //关闭curl链接 echo $response;//显示返回信息 ?>
In fact, it is very simple, just put the content into an XML string, encode it in base_64 as required, and then post it to the address.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Can XML files be opened with PPT? XML, Extensible Markup Language (Extensible Markup Language), is a universal markup language that is widely used in data exchange and data storage. Compared with HTML, XML is more flexible and can define its own tags and data structures, making the storage and exchange of data more convenient and unified. PPT, or PowerPoint, is a software developed by Microsoft for creating presentations. It provides a comprehensive way of

To update the curl version under Linux, you can follow the steps below: Check the current curl version: First, you need to determine the curl version installed in the current system. Open a terminal and execute the following command: curl --version This command will display the current curl version information. Confirm available curl version: Before updating curl, you need to confirm the latest version available. You can visit curl's official website (curl.haxx.se) or related software sources to find the latest version of curl. Download the curl source code: Using curl or a browser, download the source code file for the curl version of your choice (usually .tar.gz or .tar.bz2

Implementing filtering and sorting of XML data using Python Introduction: XML is a commonly used data exchange format that stores data in the form of tags and attributes. When processing XML data, we often need to filter and sort the data. Python provides many useful tools and libraries to process XML data. This article will introduce how to use Python to filter and sort XML data. Reading the XML file Before we begin, we need to read the XML file. Python has many XML processing libraries,

Convert XML data in Python to CSV format XML (ExtensibleMarkupLanguage) is an extensible markup language commonly used for data storage and transmission. CSV (CommaSeparatedValues) is a comma-delimited text file format commonly used for data import and export. When processing data, sometimes it is necessary to convert XML data to CSV format for easy analysis and processing. Python is a powerful

Using Python to merge and deduplicate XML data XML (eXtensibleMarkupLanguage) is a markup language used to store and transmit data. When processing XML data, sometimes we need to merge multiple XML files into one, or remove duplicate data. This article will introduce how to use Python to implement XML data merging and deduplication, and give corresponding code examples. 1. XML data merging When we have multiple XML files, we need to merge them

Python implements conversion between XML and JSON Introduction: In the daily development process, we often need to convert data between different formats. XML and JSON are common data exchange formats. In Python, we can use various libraries to convert between XML and JSON. This article will introduce several commonly used methods, with code examples. 1. To convert XML to JSON in Python, we can use the xml.etree.ElementTree module

Handling Errors and Exceptions in XML Using Python XML is a commonly used data format used to store and represent structured data. When we use Python to process XML, sometimes we may encounter some errors and exceptions. In this article, I will introduce how to use Python to handle errors and exceptions in XML, and provide some sample code for reference. Use try-except statement to catch XML parsing errors When we use Python to parse XML, sometimes we may encounter some

Importing XML data into the database using PHP Introduction: During development, we often need to import external data into the database for further processing and analysis. As a commonly used data exchange format, XML is often used to store and transmit structured data. This article will introduce how to use PHP to import XML data into a database. Step 1: Parse the XML file First, we need to parse the XML file and extract the required data. PHP provides several ways to parse XML, the most commonly used of which is using Simple
