Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You can do this</p> <pre><code>$html = file_get_html('http://mp3skull.com/mp3/gangnam_style.html'); $list = array(); $x = 0 ; foreach ( $html-&gt;find('div#song_html ') as $e ) { $song = array(); $song['bit'] = preg_replace('!\s+!', ' ',$e-&gt;find('div', 0)-&gt;plaintext); $song['title'] = preg_replace('!\s+!', ' ',$e-&gt;find('div', 1)-&gt;plaintext); $song['url'] = preg_replace('!\s+!', ' ',$e-&gt;find('a', 0)-&gt;href); $list[] = $song; } echo "&lt;pre&gt;"; print_r($list); </code></pre> <p>Output </p> <pre><code>Array ( [0] =&gt; Array ( [bit] =&gt; 320 kbps 4:01 9.2 mb [title] =&gt; Psy - Gangnam style (DJ Pasha Lee &amp; DJ Vitaco remix) - Psy - Gangnam style (DJ Pasha Lee &amp; DJ Vitaco remix) mp3 Download Play Embed Send Ringtone [url] =&gt; http://promodj.com/source/3594542/Psy_Gangnam_style_DJ_Pasha_Lee_DJ_Vitaco_remix.mp3 ) [1] =&gt; Array ( [bit] =&gt; 320 kbps 4:01 9.2 mb [title] =&gt; Psy - Gangnam style (DJ Pasha Lee &amp; DJ Vitaco remix) - Psy - Gangnam style (DJ Pasha Lee &amp; DJ Vitaco remix) mp3 Download Play Embed Send Ringtone [url] =&gt; http://promodj.com/download/3608444/Psy_Gangnam_style_DJ_Pasha_lee_DJ_Vitaco_remix.mp3 ) [2] =&gt; Array ( [bit] =&gt; 128 kbps 4:21 3.98 mb [title] =&gt; Psy - Gangnam Style (Boys Electro Mash-Up) - Psy Gangnam Style Boys Electro Mash Up mp3 Download Play Embed Send Ringtone [url] =&gt; http://promodj.com/download/3614746/Psy_Gangnam_Style_Boys_Electro_Mash_Up.mp3 ) [3] =&gt; Array ( [bit] =&gt; 128 kbps 4:21 3.98 mb [title] =&gt; Psy - Gangnam Style (Boys Electro Mash-Up) - Psy Gangnam Style Boys Electro Mash Up mp3 Download Play Embed Send Ringtone [url] =&gt; http://promodj.com/source/3614746/Psy_Gangnam_Style_Boys_Electro_Mash_Up.mp3 ) [4] =&gt; Array ( [bit] =&gt; 192 kbps 2:53 3.97 mb [title] =&gt; Jewish style Official parody to PSY GANGNAM STYLE MISSION ARIO REMIX DEMO FUNNY mp3 Download Play Embed Send Ringtone [url] =&gt; http://promodj.com/download/3623591/Jewish_style_Official_parody_to_PSY_GANGNAM_STYLE_MISSION_ARIO_REMIX_DEMO_FUNNY.mp3 ) [5] =&gt; Array ( [bit] =&gt; 192 kbps 2:53 3.97 mb [title] =&gt; Jewish style Official parody to PSY GANGNAM STYLE MISSION ARIO REMIX DEMO FUNNY mp3 Download Play Embed Send Ringtone [url] =&gt; http://promodj.com/source/3623591/Jewish_style_Official_parody_to_PSY_GANGNAM_STYLE_MISSION_ARIO_REMIX_DEMO_FUNNY.mp3 ) ........ so many more </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload