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

Ubuntu環境下apache 目錄啟動.htaccess 功能

Ubuntu環境下apach...

.htaccess 檔案是目錄層面的設定檔,可以對目錄變更 Apache 的設定。 要使用 .hta...

使用javascript獲取ckeditor textarea的textarea值

使用javascript獲取...

一般來說,若我想使用 javascript 來得到 textarea 的值。 可以使用以下方式: 首...

使用jquery判斷上傳檔案大小

使用jquery判斷上傳檔案...

首先得引用jquery var fileSize = document.getElementById...

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