配合corn使用
<?php
//header("Content-type:application/x-www-form-urlencoded");
//header("Accept:text/vnd.wap.wml,text/html,text/plain,image/*,*/*");
function sendWeibo($cont){
$content=$cont;
$url="
http://weibo.cn/mblog/sendmblog?st=8cea&vt=4&gsid=填写你的";
$post_data="rl=0&content=".$content;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// 我们在POST数据哦!
curl_setopt($ch, CURLOPT_POST, 1);
// 把post的变量加上
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
}
?>