Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7068829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:22:18+00:00 2026-05-28T05:22:18+00:00

Using XPath to parse this link $html = ‘<a href=/browse/product.do?cid=1&amp;vid=1&amp;pid=1 class=productItemName>what is going on

  • 0

Using XPath to parse this link

$html = '<a href="/browse/product.do?cid=1&amp;vid=1&amp;pid=1" class="productItemName">what is going on here</a>';

$dom = new DOMDocument();
$dom->loadhtml($html);
$xpath = new DOMXPath($dom);

$selectors['link'] = '//a/@href';
$links_nodeList = $xpath->query($selectors['link']);

foreach ($links_nodeList as $link) {
    $link->nodeValue = str_replace("http://www.test.com",'',$link->nodeValue); // relativize link
    $links[] = $link->nodeValue;
}

echo("<p>links</p>");
echo("<pre>");
print_r($links);
echo("</pre>");

gives the result:

Warning: main() [function.main]: unterminated entity reference vid=1&pid=1 in C:\Users\dir\public_html\whatisgoingon.php on line 14
links

Array
(
    [0] => /browse/product.do?cid=1
)

This line is causing the error and the truncation of the link. What is going on here?

$link->nodeValue = str_replace("http://www.test.com",'',$link->nodeValue);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T05:22:18+00:00Added an answer on May 28, 2026 at 5:22 am

    The &amp; inside the URL must be being decoded when you reference nodeValue. Wrap it in htmlentities()

    foreach ($links_nodeList as $link) {
        $link->nodeValue = str_replace("http://www.test.com",'',htmlspecialchars($link->nodeValue)); // relativize link
        $links[] = htmlspecialchars($link->nodeValue, ENT_QUOTES, 'UTF-8');
    }
    

    Outputs:

    Array
    (
        [0] => /browse/product.do?cid=1&amp;vid=1&amp;pid=1
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to parse some HTML using XPath in Java. Consider this HTML: <td
I want to parse HTML with lxml using XPath expressions. My problem is matching
Is it possible to parse HTML (HTML/HTML5, not XHTML) pages using XPath and Qt
I'm trying to parse this xml input using the bash utility xpath : <?xml
This is what I want to parse <div class=photoBox pB-ms> <a href=/user_details?userid=ePDZ9HuMGWR7vs3kLfj3Gg> <img width=100
I'm using TFHpple (which uses XPath) to parse an HTML document. I can get
I am using the XPath in PHP 5 to parse a XML document. The
I am using php's simple xml and xpath to parse an rdf xml file
Im using mechanize to parse http://www.hammacher.com/Category/Default.aspx?uq=Gifts-Under-30&all=True What xpath can I use to get to
I am learning scraping using the PHP Simple HTML DOM Parser and Xpath. Accroding

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.