早上好,我可以用PHP解析asp页面以获取html标签代码吗?
如何从asp页面中获取此值<a href="xxx">**VALUE TO TAKE**</a>
?
答案 0 :(得分:1)
是的,你可以使用file_get_contents('http://www.example.com/myasp.asp');来获取字符串中的文件,然后使用一些RegEx来获取所需的数据。
像
这样的东西<?php
/*GET ALL LINKS FROM http://www.w3schools.com/asp/default.asp*/
$page = file_get_contents('http://www.w3schools.com/asp/default.asp');
preg_match_all("/<a.*>(.*?)<\/a>/", $page, $matches, PREG_SET_ORDER);
echo "All links : <br/>";
foreach($matches as $match){
echo $match[1]."<br/>";
}
?>