href 属性をクリックしようとしています ここに私のサンプルhtmlがあります
<ul>
<li>
<a href='http://www.google.com'>Google</a>
</li>
</ul>
そして、ここに私のphpコードがあります
<?php
require_once('classes/simple_html_dom.php');
$html = file_get_html("/var/www/html/dk/PHP_SCRAPPING/google.html");
echo $html->find("ul li a",0)->href;
?>
出力は
http://www.google.com
このURLをクリックしたいだけです。どうやってするか?これをするように言わないでください
file_get_html($html->find("ul li a",0)->href);
単純な html dom を使用して任意の href をクリックできる方法を探しています。