|
|
|
stream_context_create มันใช้งานดีกว่า POST GET แบบปกติยังไงครับ |
|
|
|
|
|
|
|
Code (PHP)
$fileHandle = fopen("someImage.jpg", "rb");
$fileContents = stream_get_contents($fileHandle);
fclose($fileHandle);
$params = array(
'http' => array
(
'method' => 'POST',
'header'=>"Content-Type: multipart/form-data\r\n",
'content' => $fileContents
)
);
$url = "http://somesite.somecompany.com?someParam=someValue";
$ctx = stream_context_create($params);
$fp = fopen($url, 'rb', false, $ctx);
$response = stream_get_contents($fp);
ถ้าเป็นตัวนี้มันสามารถ Post ไปเว็บโดยสามารถซ่อนการทำงานได้ครับ ต่างจาก post และ get ปกติ ที่จะต้อง action ไปยัง page นั้น ๆ ครับ
|
|
|
|
|
Date :
2014-09-19 09:02:46 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณตัวอย่างที่ mr.win อุตส่าสละเวลามาเขียนครับ
สวดยอด
|
|
|
|
|
Date :
2014-09-19 10:16:08 |
By :
ปลื้ม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเอามาจาก php.net ครับ
|
|
|
|
|
Date :
2014-09-19 10:22:52 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|