这篇文章主要介绍了php程序内部post数据的方法,涉及curl的使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了php程序内部post数据的方法。分享给大家供大家参考。具体实现方法如下:
$postData = array(); $postData['data1'] = "testdata1"; $postData['data2'] = "testdata2"; $postData['data3'] = "testdata3"; $url='http://yourdomain/do.php'; $str=""; foreach ($postData as $k=>$v) { $str.= "$k=".urlencode($v)."&"; } $postData=substr($str,0,-1); $c = curl_init(); curl_setopt($c, CURLOPT_POST, 1); curl_setopt($c, CURLOPT_HEADER, 0); curl_setopt($c, CURLOPT_URL,$url); curl_setopt($c, CURLOPT_POSTFIELDS, $postData); $result = curl_exec($c);
希望本文所述对大家的php程序设计有所帮助。
,
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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
