我需要“计算”一个 URL 并重定向到它。我有以下代码:
<?php
//Basic HTML parsing with PHP
include("simple_html_dom.php");
$htmlCode = file_get_html('http://example.net/example.html');
foreach($htmlCode->find('div[class=frontPageImage]') as $element) {
foreach($element->find('img') as $imagee)
$imgurl = $imagee->src;
}
header("'Location:".$imgurl."'");
?>
首先在 $imgurl 中获取 url,然后重定向到该 url ......但它不起作用..
有什么想法或建议吗?谢谢