Rumah >pembangunan bahagian belakang >tutorial php >php curl之curlopt_postfields参数使用细节
当采用 curl 在不注意细节的前提下向服务器发送一些数据,可能得到下面这样的结果,这不是理想中的结果:
但是如果在采用 http_build_query($post_data) 来替代 $post_data 再向这个 php 脚本提交数据时,就会得到和上面不同的结果,这才是理想中的结果:
从以上例子看出,使用 curl 并且参数为数据时,向服务器提交数据时,http头会发送content_type: application/x-www-form-urlencoded。这个是正常的网页 |