代码拉取完成,页面将自动刷新
同步操作将从 JIANGWL/DeleteWeiboTool 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/**
* Created by PhpStorm.
* Author: William
* Date: 2016/9/13
* Time: 0:15
*/
require_once('Functional/Core.php');
class Delete extends Core
{
// TODO 加入删除开始序号
public function start($loopTimes = 1, $deleteAll = 0)
{
//循环执行次数
for ($i = 0, $failTimes = 0; $i < $loopTimes || $deleteAll;) {
$content = $this->getContent();
if (!$content) {
if ($failTimes < 10 || $deleteAll) {
$failTimes++;
echo "获取页面失败,正在重试" . $failTimes . "... " . PHP_EOL;
sleep(10);
continue;
} else {
die('获取微博内容失败,请访问用浏览器访问一下微博页面并刷新,重新设置cookie,或您的IP已被禁用');
}
}
$failTimes = 0;
$WeiboIds = $this->getAllWeiboId($content);
if (empty($WeiboIds)) {
die('已经没有微博了或获取微博失败,请重试');
//echo '已经没有微博了或获取微博失败,请重试';
}
foreach ($WeiboIds as $wid) {
$de = $this->delWeiboById($wid);
if ($de) {
echo '删除id为:' . $wid . '的微博' . PHP_EOL;
} else {
echo '删除id为:' . $wid . '的微博失败' . PHP_EOL;
}
sleep(1);
}
$i++;
//防止操作太快
sleep(10);
}
}
/**
* 正则获取页面上所有微博的ID
*/
protected function getAllWeiboId($content)
{
$regx = '/,\"idstr\"\:\"([^\"]*)/';
preg_match_all($regx, $content, $matchs);
return $matchs[1];
}
/**
* 获取个人微博页面内容
*/
protected function getContent()
{
return $this->load->curl->request('GET', $this->load->config->get('self_page_url'), $this->load->config->get('sina_phone_header'));
}
/**
* 删除微博接口
* @param array $WeiboIds 正则获取到的微博id
*/
public function delWeiboById($WeiboId = '')
{
$result = $this->load->curl->request('POST', $this->load->config->get('del_weibo_api'), $this->load->config->get('sina_phone_delete_header'), array('id' => (string)$WeiboId));
return $result;
}
}
$delete = new Delete();
$delete->start(10, 1);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。