curl-php cURL 上传文件失败

WBOY
WBOYオリジナル
2016-06-02 11:29:351146ブラウズ

phpcurl

curlPost.php

<code> <?php $post = array(        'name' => 'wyjie',        'img'  => '@D:/debug.exe'        );    //cURL发送post请求    $ch = curl_init();    curl_setopt($ch, CURLOPT_URL, 'http://localhost/demo/demo/curl/01.php');    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);    curl_setopt($ch, CURLOPT_POST, 1);    curl_setopt($ch, CURLOPT_POSTFIELDS, $post);    $optput = curl_exec($ch);    curl_close($ch);    echo $optput; ?></code>

01.php

<code> <?php print_r($_POST);    print_r($_FILES); ?></code>

输出结果
Array ( [name] => wyjie [img] => @./debug.exe ) Array ( )

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。