上传图片至http://yotuku.cn/,详见:http://blog.skyx.in/archives/164/ 1. [代码] [PHP]代码 ?php$data = base64_encode(file_get_contents('test.jpg')); $ch = curl_init('http://yotuku.cn/upload?name='); curl_setopt($ch, CURLOPT_CUSTO
1. [代码][PHP]代码
<?php
$data = base64_encode(file_get_contents('test.jpg'));
$ch = curl_init('http://yotuku.cn/upload?name=');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: text/plain',
'Content-Length: ' . strlen($data))
);
$result = curl_exec($ch);
echo $result;
