繁体   English   中英

替换链接位置(href ='…')

[英]Replace Links Location (href='…')

我要替换页面的链接位置(锚标记),如下所示。

输入样例:

text text text <a href='http://test1.com/'> click </a> text text
other text <a class='links' href="gallery.html" title='Look at the gallery'> Gallery</a>
more text

样本输出

text text text <a href='http://example.com/p.php?q=http://test1.com/'> click </a> text text
other text <a class='links' href="http://example.com/p.php?q=gallery.html" title='Look at the gallery'> Gallery</a>
more text

我希望我已经说清楚了。 无论如何,我正在尝试使用PHP和reg-ex来实现。 您能正确地照亮我吗?

谢谢萨迪

不要使用正则表达式来解析HTML。

一定要使用PHP的内置XML解析引擎。 它可以很好地解决您的问题(并回答启动问题):

<?php
  libxml_use_internal_errors(true);  // ignore malformed HTML
  $xml = new DOMDocument();
  $xml->loadHTMLFile("http://stackoverflow.com/questions/3099187/replace-links-location-href"); 
  foreach($xml->getElementsByTagName('a') as $link) {
   $link->setAttribute('href', "http://www.google.com/?q=" . $link->getAttribute('href'));
  }
  echo $xml->saveHTML();  // output to browser, save to file, etc.

尝试使用str_replace();

   $string = 'your text';
   $newstring = str_replace ('href="', 'href="http://example.com/p.php?q=', $string);

暂无
暂无

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

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