// 从文本域解析图片URL,返回指定数量的不同随机图片URL
private function get_random_img_urls( $count = 1 ) {
$raw = get_option( self::OPTION_IMG_URLS, '' );
if ( empty( $raw ) ) return array();
$lines = explode( "\n", $raw );
$urls = array();
foreach ( $lines as $line ) {
$url = trim( $line );
if ( ! empty( $url ) ) {
$urls[] = $url;
}
}
if ( empty( $urls ) ) return array();
// 打乱数组顺序,保证随机性
shuffle( $urls );
// 如果需要的数量大于可用数量,循环补充
$result = array();
$urlCount = count( $urls );
for ( $i = 0; $i < $count; $i++ ) {
$result[] = $urls[ $i % $urlCount ];
}
return $result;
}
// 单张随机图兼容方法(保留原有调用)
private function get_random_img_url() {
$urls = $this->get_random_img_urls( 1 );
return $urls ? $urls[0] : '';
}
private function process_post( $post_id, $source ) {
$post = get_post( $post_id );
if ( ! $post || 'publish' !== $post->post_status ) return;
$content = (string)$post->post_content;
$images = $this->extract_image_urls( $content );
// 文章无图片 → 中间插入图片(原有逻辑不变)
if ( empty( $images ) ) {
$new_img_url = $this->get_random_img_url();
if ( empty( $new_img_url ) ) {
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'failed',
'reason' => '未配置可用图片地址,无法新增图片',
'image_count' => 0,
'broken_count' => 0,
'replaced_count' => 0,
'old_urls' => array(),
'new_urls' => array(),
'run_source' => $source
) );
return;
}
$img_tag = '
 . ')
';
$content_len = mb_strlen( $content );
$mid_pos = (int)( $content_len / 2 );
$new_content = mb_substr( $content, 0, $mid_pos ) . $img_tag . mb_substr( $content, $mid_pos );
$updated = wp_update_post( array(
'ID' => $post_id,
'post_content' => $new_content
), true );
if ( is_wp_error( $updated ) ) {
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'failed',
'reason' => '新增图片失败:' . $updated->get_error_message(),
'image_count' => 0,
'broken_count' => 0,
'replaced_count' => 1,
'old_urls' => array(),
'new_urls' => array( $new_img_url ),
'run_source' => $source
) );
return;
}
clean_post_cache( $post_id );
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'add_image',
'reason' => '文章无图片,已在内容中间插入图片',
'image_count' => 1,
'broken_count' => 0,
'replaced_count' => 1,
'old_urls' => array(),
'new_urls' => array( $new_img_url ),
'run_source' => $source
) );
return;
}
// 检测失效图片(原有逻辑不变)
$broken_urls = array();
$reasons = array();
foreach ( $images as $url ) {
$check = $this->is_image_url_valid( $url );
if ( ! $check['valid'] ) {
$broken_urls[] = $url;
$reasons[] = $url . ' => ' . $check['reason'];
}
}
$broken_urls = array_values( array_unique( $broken_urls ) );
if ( empty( $broken_urls ) ) {
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'no_need',
'reason' => '所有图片均可正常访问',
'image_count' => count( $images ),
'broken_count' => 0,
'replaced_count' => 0,
'old_urls' => array(),
'new_urls' => array(),
'run_source' => $source
) );
return;
}
// 替换失效图片(核心修改部分)
$new_content = $content;
$replace_map = array();
$replaced_count = 0;
$failed_reason = '';
// 获取与失效图片数量匹配的随机备用图
$rand_imgs = $this->get_random_img_urls( count( $broken_urls ) );
if ( empty( $rand_imgs ) ) {
$failed_reason = '未配置可用图片地址,无法替换';
} else {
// 为每个失效URL分配不同的备用图
foreach ( $broken_urls as $index => $bad_url ) {
$new_img = $rand_imgs[ $index ];
if ( false !== strpos( $new_content, $bad_url ) ) {
$new_content = str_replace( $bad_url, $new_img, $new_content );
$replace_map[ $bad_url ] = $new_img;
$replaced_count++;
}
}
}
if ( $failed_reason ) {
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'failed',
'reason' => $failed_reason . ';失效明细:' . implode( ';', $reasons ),
'image_count' => count( $images ),
'broken_count' => count( $broken_urls ),
'replaced_count' => $replaced_count,
'old_urls' => $broken_urls,
'new_urls' => $replace_map,
'run_source' => $source
) );
return;
}
if ( $new_content === $content || $replaced_count <= 0 ) {
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'failed',
'reason' => '检测到失效图片,但未能完成替换;失效明细:' . implode( ';', $reasons ),
'image_count' => count( $images ),
'broken_count' => count( $broken_urls ),
'replaced_count' => 0,
'old_urls' => $broken_urls,
'new_urls' => $replace_map,
'run_source' => $source
) );
return;
}
$updated = wp_update_post( array(
'ID' => $post_id,
'post_content' => $new_content
), true );
if ( is_wp_error( $updated ) ) {
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'failed',
'reason' => '文章更新失败:' . $updated->get_error_message(),
'image_count' => count( $images ),
'broken_count' => count( $broken_urls ),
'replaced_count' => 0,
'old_urls' => $broken_urls,
'new_urls' => $replace_map,
'run_source' => $source
) );
return;
}
clean_post_cache( $post_id );
$this->insert_log( array(
'post_id' => $post_id,
'post_title' => get_the_title( $post_id ),
'status' => 'success',
'reason' => '已替换失效图片;失效明细:' . implode( ';', $reasons ),
'image_count' => count( $images ),
'broken_count' => count( $broken_urls ),
'replaced_count' => $replaced_count,
'old_urls' => $broken_urls,
'new_urls' => $replace_map,
'run_source' => $source
) );
}
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/www.dongwubaike.cn/fanhao/wp-content/plugins/img-batch-replace/wp-image-health-repair-bulk-v2.php:1) in /www/wwwroot/www.dongwubaike.cn/fanhao/wp-includes/rest-api/class-wp-rest-server.php on line 1902
{"id":136973,"date":"2021-11-02T15:31:35","date_gmt":"2021-11-02T07:31:35","guid":{"rendered":"https:\/\/www.keaglegz.com\/136973.html"},"modified":"2021-11-02T15:31:35","modified_gmt":"2021-11-02T07:31:35","slug":"%e5%a0%80%e5%86%85%e7%a7%8b%e7%be%8e%e6%9d%90%e6%96%99","status":"publish","type":"post","link":"https:\/\/www.dongwubaike.cn\/fanhao\/136973.html","title":{"rendered":"\u5800\u5185\u79cb\u7f8e\u6750\u6599"},"content":{"rendered":"\n\u5800\u5185\u79cb\u7f8e\u6750\u6599<\/p>\n
\u5800\u5185\u79cb\u7f8e\uff0c\u65e5\u6587\u540d\uff1a\u307b\u308a\u3046\u3061\u3042\u3051\u307f\uff0c\u82f1\u6587\u540d\uff1aAkimi Horiuchi\uff0c\u5e740\u6708\u65e5\u6b7b\u4ea1\u4e8e\u65e5\/\u7727\u7f03\u4e1c\u4eac\u65e5\u672c\u6a31\u82b1\u90fd\uff0c\u662f\u65e5\/\u7727\u7f03AWV\u5973\u7272\uff0c0\u65e5\u6708\u65e5\u5165\u884c\uff0c\u4ece\u5c5e\u4e8eREbecca\u516c\u53f8\uff0c\u559c\u597d\u5b66\u4e60\u3002<\/p>\n
\u5800\u5185\u79cb\u7f8e\u6750\u6599<\/p>\n
\u4e2d\u6587\u540d\uff1a\u5800\u5185\u79cb\u7f8e<\/p>\n
\u65e5\u6587\u540d\uff1a\u307b\u308a\u3046\u3061\u3042\u3051\u307f<\/p>\n
\u82f1\u6587\u540d\uff1aAkimi Horiuchi<\/p>\n
\u56fd\u522b\uff1a\u5973<\/p>\n
\u4eba\u79cd\uff1a\u5927\u548c\u4eba\u79cd<\/p>\n
\u515a\u7c4d\uff1a\u65e5\/\u7727\u7f03<\/p>\n
\u51fa\u534e\u8bde\u671f\uff1a\u5e740\u6708\u65e5<\/p>\n
\u6b7b\u4ea1\u5730\uff1a\u65e5\/\u7727\u7f03\u4e1c\u4eac\u90fd<\/p>\n
\u661f\u5bbf\uff1a\u5929\u7434\u5ea7<\/p>\n
\u4f53\u91cd\uff1akg<\/p>\n
\u8eab\u9ad8\uff1acm<\/p>\n
\u4e09\u56f4\uff1a–CM<\/p>\n
\u7f69\u676f\uff1a<\/p>\n
<\/a><\/p>\nE\u676f<\/p>\n
\u97f3\u578b\uff1aO\u578b<\/p>\n
\u804c\u4e1a\uff1a\u65e5\/\u7727\u7f03AWV\u5973\u7272<\/p>\n
\u5165\u884c\u5de5\u592b\uff1a0\u65e5\u6708\u65e5<\/p>\n<\/p>\n
\u5f15\u9000\u5de5\u592b\uff1a\u8fc4\u4eca<\/p>\n
\u5174\u5473\u559c\u597d\uff1a\u5b66\u4e60<\/p>\n
\u5800\u5185\u79cb\u7f8e\u7b80\u4ecb<\/p>\n
\u5800\u5185\u79cb\u7f8e\uff0c\u65e5\u6587\u540d\uff1a\u307b\u308a\u3046\u3061\u3042\u3051\u307f\uff0c\u82f1\u6587\u540d\uff1aAkimi Horiuchi\uff0c\u5e740\u6708\u65e5\u6b7b\u4ea1\u4e8e\u65e5\/\u7727\u7f03\u4e1c\u4eac\u90fd\uff0c\u662f\u65e5\/\u7727\u7f03AWV\u5973\u7272\uff0c0\u65e5\u6708\u65e5\u5165\u884c\uff0c\u4ece\u5c5e\u4e8eREbecca\u516c\u53f8\uff0c\u559c\u597d\u5b66\u4e60\u3002\u5800\u5185\u79cb\u7f8e\u957f\u76f8\u6bd4\u62df\u5fa1\u59d0\u8303\uff0c\u8eab\u4f53\u975e\u5e38\u5747\u5300\u3002\u5800\u5185\u79cb\u7f8e\u7684\u4f5c\u54c1<\/p>\n
<\/a><\/p>\n\u6587\u7ae0\u6ca1\u6709\u65ad\u90fd\u662f\u4f17\u4eba\u5173\u5fc3\u7684\u7126\u70b9\u8bae\u9898\uff0c\u5800\u5185\u79cb\u7f8e\u4f5c\u54c1\u6587\u7ae0\u5e76\u6ca1\u6709\u662f\u50cf\u6b66\u85e4\u5170\u6216\u8005\u8bb8\u677e\u5c9b\u67ab\u90a3\u6837\u7684\u591a\uff0c\u7136\u800c\u5800\u5185\u79cb\u7f8e\u4f5c\u54c1\u6587\u7ae0\u8fd8\u662f\u65e0\u6bd4\u5b58\u6b63\u5728\u672c\u4eba\u7684\u96c6\u4f53\u7279\u5f81\u7684\uff0c\u5800\u5185\u79cb\u7f8e\u4f5c\u54c1\u6587\u7ae0\u4e00\u5de5\u592b\u53d8\u5316\u4e86AWV\u754c\u5173\u5fc3\u7684\u7126\u70b9\uff0c\u5800\u5185\u79cb\u7f8e\u4e5f\u51ed\u4ed7\u7740\u65e0\u6bd4\u4fee\u957f\u7684\u7f8e\u9000\u611f\u52a8\u4e86\u6ca1\u6709\u5c11\u5f71\u8ff7\u4eec\u7684\u5fc3\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"
\u5800\u5185\u79cb\u7f8e\u6750\u6599 \u5800\u5185\u79cb\u7f8e\uff0c\u65e5\u6587\u540d\uff1a\u307b\u308a\u3046\u3061\u3042\u3051\u307f\uff0c\u82f1\u6587\u540d\uff1aAkimi Horiuchi\uff0c\u5e740\u6708\u65e5\u6b7b\u4ea1\u4e8e\u65e5\/\u7727\u7f03\u4e1c\u4eac\u65e5\u672c\u6a31\u82b1\u90fd\uff0c\u662f\u65e5\/\u7727\u7f03AWV\u5973\u7272\uff0c0\u65e5\u6708\u65e5\u5165\u884c\uff0c\u4ece\u5c5e\u4e8eREbecca\u516c\u53f8\uff0c\u559c\u597d\u5b66\u4e60\u3002 \u5800\u5185\u79cb\u7f8e\u6750\u6599 \u4e2d\u6587\u540d\uff1a\u5800\u5185\u79cb\u7f8e \u65e5\u6587\u540d\uff1a\u307b […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[66015],"tags":[],"class_list":["post-136973","post","type-post","status-publish","format-standard","hentry","category-mxx"],"_links":{"self":[{"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/posts\/136973","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/comments?post=136973"}],"version-history":[{"count":0,"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/posts\/136973\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/media?parent=136973"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/categories?post=136973"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dongwubaike.cn\/fanhao\/wp-json\/wp\/v2\/tags?post=136973"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}