<?php $srcurl = \"大众所要截取目标的URL地址\"大众; $handle = fopen($srcurl,\"大众rb\公众); $content = fread($handle,10240000); $start_position=strpos($content,'截取内容开始代码A'); $start_position=$start_position+strlen('截取内容开始代码A'); $end_position=strpos($content,' 截取内容结束代码C'); $length=$end_position-$start_position; $content=substr($content,$start_position,$length); echo 'document.write(\"大众'.$content.'\"大众)'; ?>
这样就可以截取所需的内容B。追后授予$content,我在末了加上了echo ‘document.write为的是这样就天生了JS代码。 直接就成了JS代码可直接在我想须要此内容的地方用JS调用显示。这个你用php是不能得到的,它又不是通过get或post提交的 可以给你的<td>一个id,然后通过 document.getElementByIdx_x_x_x(\"大众name\公众).innerHtml就可以得到了
代码库
导入指定网站或页面代码如下:
HP 获取指定网站、网页、URL 的 <head> 标题:
获取网页的标题:
<? $url = 'http://www..com/'; $lines_array = file($url); $lines_string = implode('', $lines_array); eregi(\"大众<head>(.)</head>\"大众, $lines_string, $head); echo $head[0]; ?>HP 获取网页的 Html 源代码输出并实行:
<?php$lines = file('http://www..com/');foreach ($lines as $line_num => $line) {echo $line;}?>获取网页Html源代码输出并实行2:<?phpecho file_get_contents(\"大众http://www..com/\公众);?>PHP 获取指定网站、网页、URL 的 Html 源代码:
获取网页Html源代码:
<?php$lines = file('http://www..com/');foreach ($lines as $line_num => $line) {echo \"大众Line <b>{$line_num}</b> : \"大众 . htmlspecialchars($line) . \公众<br />\n\公众;}?>
特定网页的特定代码段
<?php $url = \"大众http://..com/a/20110428/005344.htm\公众; $contents = file_get_contents($url); //如果涌现中文乱码利用下面代码 //$getcontent = iconv(\公众gb2312\"大众, \"大众utf-8\"大众,$contents); //echo $contents; $from=\公众<div id=\\"大众Cnt-Main-Article-QQ\\公众><P style=\\"大众TEXT-INDENT: 2em\\"大众>\"大众;$end=\"大众</div>\"大众;$q=cut($contents, $from, $end);echo $q;function cut($file,$from,$end){ $message=explode($from,$file); $message=explode($end,$message[1]); return $message[0]; } ?>
PHP 查找、判断字符串在另一个字符串中是否存在:
<?phpif(stristr(\公众www..com\公众, \"大众.com\"大众)) { echo \公众查询关键词\"大众; }?>