douzhanglun4482 2015-04-02 21:20
浏览 33

如何阻止一个preg替换阵列干扰另一个?

function html_url_to_link($string) {

  $patterns = array();
  $patterns[0] = '/user\/(.+)/';
  $patterns[1] = '/http:\/\/(.+)/';

  $replacements = array();
  $replacements[0] = '<a href="/user/$1">user/$1</a>';
  $replacements[1] = '<a href="$0">$0</a>';

  return preg_replace($patterns, $replacements, $string);

}

If the text was http://website.com/user/account, the first array (0) would interfere with the second array (1).

  • 写回答

1条回答 默认 最新

  • dtll2016 2015-05-22 01:38
    关注

    I was able to make it functional by flipping the patterns around and adjusting them a bit:

    $patterns = array();
    $patterns[] = '/http:\/\/([^\/]+)\//';
    $patterns[] = '/user\/(.+)/';
    
    $replacements = array();
    $replacements[] = '<a href="$0">$0</a>';
    $replacements[] = '<a href="/user/$1">user/$1</a>';
    
    $string = 'http://website.com/user/account';
    
    echo preg_replace($patterns, $replacements, $string);
    

    Resulting in...

    <a href="http://website.com/">http://website.com/</a><a href="/user/account">user/account</a>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号