Anyone have any ideas how to resolve this? The single quote is throwing me for a loop.
$nodes = $xml->xpath("//item[contains(@catalog,'Billy's Blogs')]/title");
I've tried to escape it in various ways, all throwing errors:
$nodes = $xml->xpath("//item[contains(@catalog,'Billy\'s Blogs')]/title");
$nodes = $xml->xpath("//item[contains(@catalog,'Billy's Blogs')]/title");