이 기사의 예에서는 PHP 프로그램 내에서 데이터를 게시하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
$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 프로그래밍 설계에 도움이 되기를 바랍니다.