PHP头条
热点:

curl-phpcURL上传文件失败


phpcurl

curlPost.php

  '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; ?>

01.php

 

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

www.phpzy.comtrue/php/2123.htmlTechArticlecurl-phpcURL上传文件失败 phpcurl curlPost.php '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_RETURNTRANS...

相关文章

相关频道:

PHP之友评论

今天推荐