Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.38 KB | None | 0 0
  1. <?
  2. $html = '<li>
  3.  
  4.            <p>For the avoidance of doubt, where the Work is a
  5.  
  6.            musical composition:</p>
  7.  
  8.  
  9.  
  10.            <ol type="i">
  11.  
  12.              <li><strong>Performance Royalties Under Blanket
  13.  
  14.              Licenses</strong>. Licensor waives the exclusive
  15.  
  16.              right to collect, whether individually or, in the
  17.  
  18.              event that Licensor is a member of a performance
  19.  
  20.              rights society (e.g. ASCAP, BMI, SESAC), via that
  21.  
  22.              society, royalties for the public performance or
  23.  
  24.              public digital performance (e.g. webcast) of the
  25.  
  26.              Work.</li>
  27.  
  28.  
  29.  
  30.              <li><strong>Mechanical Rights and Statutory
  31.  
  32.              Royalties</strong>. Licensor waives the exclusive
  33.  
  34.              right to collect, whether individually or via a music
  35.  
  36.              rights agency or designated agent (e.g. Harry Fox
  37.  
  38.              Agency), royalties for any phonorecord You create
  39.  
  40.              from the Work ("cover version") and distribute,
  41.  
  42.              subject to the compulsory license created by 17 USC
  43.  
  44.              Section 115 of the US Copyright Act (or the
  45.  
  46.              equivalent in other jurisdictions).</li>
  47.  
  48.            </ol>
  49. </li>
  50.  
  51.  
  52. ';
  53.  
  54. $doc = new DOMDocument();
  55. $doc->loadHTML($html);
  56.  
  57. foreach($doc->getElementsByTagName('li') as $node)
  58. echo  $node->item->nodeValue;
  59. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement