C + + qt to PHP interface post file stream

Source: Internet
Author: User

QT calls PHP to write the interface, pass the picture file to it, and save it on the server.

Binary files cannot be passed directly, QT uses Base64 to encode and send, PHP decoding is saved as a file.

Note: When PHP receives the data, it replaces the plus sign (+) in the post data with a space, resulting in incomplete data being received, and the inability to restore normally, using the method of replacing all spaces with the + number before PHP decoding.

QT Files:

    //qt FileQFile file ("1.jpg"); if(!File.Open (qiodevice::readonly)) {Qdebug ()<<"file open failed."; return; } Qbytearray Data=File.readall ();    File.close (); Qnetworkrequest req (Qurl ("http://localhost:88/index.php")); Networkmgr->post (req,"filedata="+data.tobase64 () +"");

PHP Files:

<? PHP $recContent=$_post[' FileData ']; $data=base64_decode(str_replace("", "+", ($recContent))); file_put_contents $data );? >

 

C + + qt to PHP interface post file stream

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.