繁体   English   中英

更改PHP中的所有href链接

[英]Alter all a href links in php

目前正在处理我需要在所有链接上添加UTM标签的问题,我无法解决1/2小问题

这是我正在使用的代码,问题是,如果链接中有一个像?test = test这样的参数,则它拒绝添加utm标签。

另一个问题是一个小问题,我不确定自己是否会更改,以至于我不得不添加url,如果默认情况下在所有不知道域名的情况下将utm标签添加到所有href上,可能会很整洁。

希望有人可以帮助我,并向正确的方向推动我。

$url_modifier_domain = preg_quote('add-link.com');

$html_text = preg_replace_callback(
    '#((?:https?:)?//'.$url_modifier_domain.'(/[^\'"\#]*)?)(?=[\'"\#])#i',
    function($matches){
        $url_modifier = 'utm=some&medium=stuff';
        if (!isset($matches[2])) return $matches[1]."/?$url_modifier";
        $q = strpos($matches[2],'?');
        if ($q===false) return $matches[1]."?$url_modifier";
        if ($q==strlen($matches[2])-1) return $matches[1].$url_modifier;
        return $matches[1]."&$url_modifier";
    },
    $html);

一旦检测到网址,您就可以使用parse_url()parse_str()来详细说明网址,添加utm和medium并重建它,而无需过多关心get参数或哈希的内容:

$url_modifier_domain = preg_quote('add-link.com');

$html_text = preg_replace_callback(
    '#((?:https?:)?//'.$url_modifier_domain.'(/[^\'"\#]*)?)(?=[\'"\#])#i',
    function ($matches) {
        $link = $matches[0];
        if (strpos($link, '#') !== false) {
            list($link, $hash) = explode('#', $link);
        }
        $res = parse_url($link);

        $result = '';
        if (isset($res['scheme'])) {
            $result .= $res['scheme'].'://';
        }
        if (isset($res['host'])) {
            $result .= $res['host'];
        }
        if (isset($res['path'])) {
            $result .= $res['path'];
        }
        if (isset($res['query'])) {
            parse_str($res['query'], $res['query']);
        } else {
            $res['query'] = [];
        }

        $res['query']['utm'] = 'some';
        $res['query']['medium'] = 'stuff';

        if (count($res['query']) > 0) {
            $result .= '?'.http_build_query($res['query']);
        }
        if (isset($hash)) {
            $result .= '#'.$hash;
        }

        return $result;
    },
    $html
);

如您所见,代码更长但更简单

编辑我进行了一些更改,在文本中搜索每个href =“ xxx”。 如果链接不是来自add-link.com,脚本将跳过它,否则他将尝试以最佳方式打印它

$html = 'blabla <a href="http://add-link.com/">a</a>
<a href="http://add-link.com/">a</a>
<a href="http://add-link.com/#hashed">a</a>
<a href="http://abcd.com/#hashed">a</a>
<a href="http://add-link.com/?test=1">a</a>
<a href="http://add-link.com/try.php">a</a>
<a href="http://add-link.com/try.php?test=1">a</a>
<a href="http://add-link.com/try.php#hashed">a</a>
<a href="http://add-link.com/try.php?test=1#hashed">a</a>
<a href="http://add-link.com/try.php?test=1#hashed">a</a>
<a href="//add-link.com?test=test" style="color: rgb(198, 156, 109);">a</a>
';

$url_modifier_domain = preg_quote('add-link.com');

$html_text = preg_replace_callback(
    '/href="([^"]+)"/i',
    function ($matches) {
        $link = $matches[1];

    // ignoring outer links
    if(strpos($link,'add-link.com') === false) return 'href="'.$link.'"';

        if (strpos($link, '#') !== false) {
            list($link, $hash) = explode('#', $link);
        }
        $res = parse_url($link);

        $result = '';
        if (isset($res['scheme'])) {
            $result .= $res['scheme'].'://';
        } else if(isset($res['host'])) {
       $result .= '//';
    }

        if (isset($res['host'])) {
            $result .= $res['host'];
        }
        if (isset($res['path'])) {
            $result .= $res['path'];
        } else {
        $result .= '/';
    }

        if (isset($res['query'])) {
            parse_str($res['query'], $res['query']);
        } else {
            $res['query'] = [];
        }

        $res['query']['utm'] = 'some';
        $res['query']['medium'] = 'stuff';

        if (count($res['query']) > 0) {
            $result .= '?'.http_build_query($res['query']);
        }
        if (isset($hash)) {
            $result .= '#'.$hash;
        }

        return 'href="'.$result.'"';
    },
    $html
);

var_dump($html_text);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM