php里如何调用读取别的网页上纯文本内容?
发布网友
发布时间:2022-04-26 05:53
我来回答
共4个回答
热心网友
时间:2022-06-24 10:17
<?php
if ($fp = fopen('http://www.baidu.com/', 'r')) {
$content = '';
// keep reading until there's nothing left
while ($line = fgets($fp)) {
$content .= $line;
}
echo strip_tags($content);
} else {
echo "error";
} ?>
热心网友
时间:2022-06-24 10:17
file_get_contents($url) ,
strip_tags
热心网友
时间:2022-06-24 10:18
用file_get_contents读取url的源文件 用正则匹配
热心网友
时间:2022-06-24 10:18
找PHP+TXT留言板的源程序看看,应该用读取的原理的。