我有这段代码可以输出所有网址?tid=someNumbers
<?php
include 'simple_html_dom.php';
// Create DOM from URL or file
$html = file_get_html('http://news.sinchew.com.my/node');
// Find all links
foreach($html->find('a') as $element) {
$tid = '?tid';
$url = 'news.sinchew.com.my/node';
if(strpos($element->href,$tid) && (strpos($element->href,$url))) {
echo $element->href . '<br>';
}
}
?>
我想要做的是更改?tid=someNumbers
为?tid=1234
然后输出所有 url ?tid=1234
。我在这里呆了几个小时,有人可以帮我解决这个问题吗?