Tengo este codigo pero no puedo hacer que los links se separen en el array, alguna idea?
Código:
Gracias! <? $html = file_get_contents('http://www.google.com'); $dom = new DOMDocument(); @$dom->loadHTML($html); // grab all the on the page $xpath = new DOMXPath($dom); $hrefs = $xpath->evaluate("/html/body//a"); for ($i = 0; $i < $hrefs->length; $i++) { $href = $hrefs->item($i); $url = $href->getAttribute('href'); // echo $url.','; $separar = explode(",", $url); $numero = rand(1,10); } ?> <script> parent.location.href = "<? echo $separar[$numero];?>"; </script>