我试图阅读一小段网站代码,http://www.site.com/category
我要定位的代码如下所示:
<div class="Brands">
<h2>Search design</h2>
<div class="columns">
<div class="column first">
<div>
<a href="/category?Brand=flash">flash</a>
<span>(9)</span>
</div>
<div>
<a href="/category?Brand=bolt">bolt</a>
<span>(4)</span> And so on...
我想要做的是阅读a href 地址,然后将名称放在带有2列的表中。
Ex
flash wwwsitecom/category?brand=flash
bolt wwwsitecom//category?brand=bolt
我尝试了几种不同的方法,但不能完全解决它。
<?php
$search = 'columns';
$lines = file('http://www.site.com/category');
// Store true text found
$found = false;
foreach ($lines as $line) {
if (strpos($line, $search) !== false) {
$found = true;
echo $line;
}
}
// text not found
if (!$found) {
echo 'No match found';
}
?>
这给了我一个品牌列表,但在每个品牌之后,我希望页面直接链接显示。
有什么想法可以添加该功能吗?