最新消息: 新版网站上线了!!!

php curl上传图片的方法

curl上传图片的处理方法
<?php
	$target_url = 'http://192.168.1.101/haha.php';
	$file_name_with_full_path = realpath('./80.png');
	$post = array('file' => $file_name_with_full_path);     
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL,$target_url);
	curl_setopt($ch, CURLOPT_POST,2);
	curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
	$result=curl_exec($ch);
	curl_close ($ch);
	echo $result;
?>

转载请注明:谷谷点程序 » php curl上传图片的方法