1. What I encountered while working on a project today was that when adjusting the interface POST data, the amount of POST data was too large, resulting in no return information being received.
2. After some searching on Baidu, I found out that I need to set a header information. After trying it, it didn’t work. I don’t know if it is a problem with the TP framework?
That’s it: curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
3. So when the CURL POST data is too large, are there any other methods?