Help for this page

Select Code to Download


  1. or download this
    $xml->findnodes('//html/head/title')
    
  2. or download this
    $xml->findnodes('//*[local-name()="title"]')
    
  3. or download this
    $xml->documentElement->setNamespace(
      'http://www.w3.org/1999/xhtml' => 'xh',
    );
    
  4. or download this
    $xml->findnodes('//xh:html/xh:head/xh:title')