Loading...

使用curl執行POST請求

Temperature: 0 °C

Mark ChangMark Chang
author_tools

curl命令是一個利用URL規則在命令行下工作的文件傳輸工具。

支持文件的上傳和下載。

這邊範例使用curl向遠端執行POST請求,並送出數據。

$value_a = "12345678";
$value_b = "test";

$url = "$url";//請求網址
$data = array(
"value_a " => $value_a ,
"value_b " => $value_b
);
$ch = curl_init();
$timeout = 30; 
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);//Post提交數據包
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec($ch);
curl_close($ch);
$xml = simplexml_load_string($result);  

以上紀錄
 

https://innstory.com/story-使用curl執行POST請求-1894
PHP

Prev
 javascript如何取得檔案的副檔名

Next
使用JavaScript的split函式完成字串切割 

About the Author

Mark Chang

離不開電腦的宅男

Visitor message

Leave some footprints to prove that you visited me

Recommended reading

Author's other related stories

PHP 字串字數計算並隱藏

PHP 字串字數計算並隱藏

fontphoto55 使用PHP substr函式可以做字串切割,但在遇到中文字時記得使用mbsu...

修改apache設定

修改apache設定

pexelsphotolock5 進入apache資料夾,找到conf資料夾(預設是C:\AppSe...

javascript獲取當前時間

javascript獲取當前...

watchclock var myDate = new Date(); //獲取當前年 var ye...

Please select an option

error

Hi, thank you for your participation, but you cannot vote repeatedly~

Join innstory now and start recording your story.

"Innstory" is a place to store stories. We are committed to becoming a warm platform. Deepening the bonds between people is our direction.
We are convinced that the blockchain between people is not just a cold calculation. Join us now.

Wrong format