第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

替換帖子內(nèi)容中的多個(gè)域

替換帖子內(nèi)容中的多個(gè)域

PHP
HUH函數(shù) 2023-09-15 09:42:17
我有一個(gè)包含域的數(shù)組,我想替換 WordPress 中的內(nèi)部帖子內(nèi)容。我的功能很簡(jiǎn)單,使用 preg_replace。<?phpadd_filter( 'the_content', 'filter_the_content' );function filter_the_content( $content ) {  $domains = array('domain1.com/out/','domain2.com/out/');  if ( is_single() ) {      $content = preg_replace("/^(http(s)?:\/\/)?((w){3}.)?(".implode('|', $domains)."?([a-zA-Z0-9_]{2,5}.)?(\/out)?\/.+/i", 'https://domain3.com/out', $content);  }  return $content;}?>應(yīng)用過(guò)濾器后,我的內(nèi)容消失了,我不知道如何讓它工作,替換數(shù)組中的域。
查看完整描述

1 回答

?
手掌心

TA貢獻(xiàn)1942條經(jīng)驗(yàn) 獲得超3個(gè)贊

在您的正則表達(dá)式中,您有兩倍的擴(kuò)展名和/out/.


你可以用以下方法解決這個(gè)問(wèn)題:


$content = 'blah https://domain1.com/out/ blah https://domain2.com/out/ blah https://domainXXX.com/out/ blah';

$domains = array('domain1.com/out/','domain2.com/out/');

$content = preg_replace("~(?:https?://www)?(?:".implode('|', $domains).")~i", 'https://domain3.com/out', $content);

echo $content;

輸出:


blah https://https://domain3.com/out blah https://https://domain3.com/out blah https://domainXXX.com/out/ blah

演示和解釋


查看完整回答
反對(duì) 回復(fù) 2023-09-15
  • 1 回答
  • 0 關(guān)注
  • 110 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)