获得类似“https://bmovies.to/”的结果= class =“
但我想要https://bmovies.to/movie_title?
这是我的代码
foreach($html->find('a[class=name]') as $head)
{
$head->href;
$pre = 'https://bmovies.to/';
$movie=$pre.$head;
echo '<a href="'.$pre.$head.'</a>';
$count++;
}
答案 0 :(得分:1)
就像@Bytewave所说的那样,你从这条线上错过了你的主角上的角色
echo '<a href="'.$pre.$head.'</a>';
对您的链接进行更正,并在锚标记内添加一些文字,如下所示。
echo '<a href="'.$pre.$head.'">some-text-here</a>';