PHP 解析HTML元素实例 -- vb2005xu PHP进阶教程之一

在网上一搜 解析HTML元素 十之八九都会转到与JAVA相关的页面,其实PHP才是解析这些内容最简单的方案,这里仅仅提供一个例子,其他的请举一反三!


//获取HTML文件中title的值
function getHtmlFileTitle($htmlFileName)
{
 $file=file($htmlFileName); 
 $count=count($file); 

 for($i=0;$i<$count;$i++){ 
  if(eregi("<title>(.*)</title>",$file[$i],$out)){ 
   $title=$out[0]; 
  } 
 } 
 $title=substr($title,7,-8); 
 return $title;
}




<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<?php
//获取HTML文件中title的值
function getHtmlFileTitle($htmlFileName)
{
 $file=file($htmlFileName); 
 $count=count($file); 

 for($i=0;$i<$count;$i++){ 
  if(eregi("<title>(.*)</title>",$file[$i],$out)){ 
   $title=$out[0]; 
  } 
 } 
 $title=substr($title,7,-8); 
 return $title;
}

if (! isset($_REQUEST['url']) || empty($_REQUEST['url']))
	die( "参数实例: url=www.ys168.com " ) ;

echo getHtmlFileTitle("http://{$_REQUEST['url']}") ;

?>

</body>
</html>

你可能感兴趣的:(JavaScript,java,html,PHP,python)