代码拉取完成,页面将自动刷新
<?php
foreach ($_POST as $k => $v) {
$upload_data[$k] = $v;
}
$upload_data['file'] = '@' . $_FILES['file'][tmp_name];
$url = "http://up.tietuku.cn";
$r = Curl($url, $upload_data);
echo $r;
function Curl($url = '', $post_data = array()) {
if ($url == '') {
return NULL;
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, false);
//启用时会发送一个常规的POST请求,类型为:application/x-www-form-urlencoded,就像表单提交的一样。
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$info = curl_exec($ch);
curl_close($ch);
return ($info);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。