PHP file_get_contents -将所有替换的所有URL 链接(PHP file_get

2019-08-08 15:05发布

解决:请回答以下

HOW TO: - 获取所有的URL从一个文件中使用的file_get_contents拉。 该文件可以通过动态,并有多个URL -更换自定义一个新的URL所有网址,并添加结束作为变量现有当前网址

例:

链接www.ABC.com更改为www.MyWebsite.com/?link=www.ABC.com

文件名:myHTML.html的HTML电子邮件将使用的file_get_contents拉

<body>
<p>&nbsp;</p>
<p><a href="http://www.CNN.com" target="_blank">Link One</a></p>
<p><a href="http://www.ABC.com" target="_blank">Link Two</a></p>
<p><a href="http://www.foxnews.com/politics/2013/01/28/us-planning-for-new-drone-base-in-northwest-africa-officials-say/" target="_blank">Link Three</a></p>
<p><a href="ObamaMustSee.com" target="_blank">Link Four</a></p>
</body>

需要输出到下面的代码:

 <body>
<p>&nbsp;</p>
<p><a href="http://www.MyWebsite.com/?link=http://www.CNN.com" target="_blank">Link One</a></p>
<p><a href="http://www.MyWebsite.com/?link=http://www.ABC.com" target="_blank">Link Two</a></p>
<p><a href="http://www.MyWebsite.com/?link=http://www.foxnews.com/politics/2013/01/28/us-planning-for-new-drone-base-in-northwest-africa-officials-say/" target="_blank">Link Three</a></p>
<p><a href="http://www.MyWebsite.com/?link=ObamaMustSee.com" target="_blank">Link Four</a></p>
</body>

回答这个问题,我下面的工作! PS +1如果帮你:)

Answer 1:

此代码将提取所有的HTTP URL从给定的字符串,并把它们放到数组所以你可以做任何你想从数组链接:

<?php
$string = "Test http://www.google.com test2 http://www.something.com test3 http://abc.com";
preg_match_all('!https?://[\S]+!', $string, $match);

$URLs = array();

foreach ($match as $key => $value)
    foreach ($value as $key2 => $TheUrl)
        $URLs[] = $TheUrl;


for ($i=0;$i<count($URLs);$i++)
    echo $URLs[$i]."\r\n";

?>

现在,你必须从$字符串变量给到$的URL字符串数组的所有URL。 你可以print_r的网址阵列看到它使用一个for循环(在我的例子中所示)是通过它的内容或循环。

现在,如果要替换字符串中的所有URL,你可以这样做:

for ($i=0;$i<count($URLs);$i++)
    $string = str_replace($URLs[$i], "http://www.mysite.com?newurl=".$URLs[$i], $string);

例如,它会取代所有的URL字符串http://www.mysite.com?newurl=[ACTUAL URL]



Answer 2:

它是如此烦人? 试试这个;

$s = preg_replace_callback('~<a\s+href="(.*?)"(.*?)>(.*?)</a>~i', function($m){
    return sprintf('<a href="http://www.MyWebsite.com/?link=%s"%s>%s</a>', urlencode($m[1]), $m[2], $m[3]);
}, $html);
echo $s;

出;

<body>
<p>&nbsp;</p>
<p><a href="http://www.MyWebsite.com/?link=http%3A%2F%2Fwww.CNN.com" target="_blank">Link One</a></p>
<p><a href="http://www.MyWebsite.com/?link=http%3A%2F%2Fwww.ABC.com" target="_blank">Link Two</a></p>
<p><a href="http://www.MyWebsite.com/?link=http%3A%2F%2Fwww.foxnews.com%2Fpolitics%2F2013%2F01%2F28%2Fus-planning-for-new-drone-base-in-northwest-africa-officials-say%2F" target="_blank">Link Three</a></p>
<p><a href="http://www.MyWebsite.com/?link=ObamaMustSee.com" target="_blank">Link Four</a></p>
</body>


Answer 3:

我建议使用PHP简单的HTML DOM提供http://simplehtmldom.sourceforge.net/ ,因为它将使这个显著更容易。 然后,你只需做一些事情,如:

require 'simple_html_dom.php';
function trackLinks($filename) {
    $message = file_get_contents($filename);
    foreach($message->find('a') as $link) {
        $link->href="htto://www.myWebsite.com/?link=".$link->href;
    }
    file_put_contents($filename,$message->innertext);
}


Answer 4:

你可能只是逐行读取文件中的行,并使用正则表达式搜索的网址,用自己的替换它。 这是我会怎么做:

$src = fopen('myHTMLemail.php', 'r');
$dest = fopen('myHTMLemail_changed.php', 'w');


while(false !== ($line = fgets($src)))
{
    if(preg_match('/href./', $line))
    {   
        fwrite($dest, preg_replace('/href="([^"]*)"/', 'http://www.myWebsite.com?link=${1}', $line));
    }   
    else
    {   
        fwrite($dest, $line);
    }   
}
fclose($dest);
fclose($src);


Answer 5:

该工程的PHP代码

调用文件和PHP代码替换链接

<?php

$message = file_get_contents("myHTML.html");


$content = explode("\n", $message);

$URLs = array();

for($i=0;count($content)>$i;$i++)
{
     if(preg_match('/<a href=/', $content[$i]))
      {
    list($Gone,$Keep) = explode("href=\"", trim($content[$i]));
    list($Keep,$Gone) = explode("\">", $Keep);
    $message= strtr($message, array( "$Keep" => "http://www.MyWesite.com/?link=$Keep", ));
      }
}

echo $message;

?>


文章来源: PHP file_get_contents - Replace all URLs in all links