教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php获取网页内容

php获取网页内容

发布时间:2016-10-29   编辑:jiaochengji.com
教程集为您提供php获取网页内容等资源,欢迎您收藏本站,我们将为您提供最新的php获取网页内容资源

1。使用xmlhttp对象,类似于asp中的ActiveXObject对象,其实xmlhttp无非就是get和put的操作,在php里面

get的,直接用file_get_contents/fopen/readfile这些函数就是了

put的,自己写fsockopen发送也行,用NET_Curl也行

(直接用系统函数要简单,通用,耗费资源少)

$xhr = new COM("MSXML2.XMLHTTP");
$xhr->open("GET","http://localhost/xxx.php?id=2",false);
$xhr->send();
echo $xhr->responseText

2。上面说的file_get_contents实现

<?php
$url="http://www.blogjava.net/pts";
echo file_get_contents( $url );
?>

3。上面说的fopen()实现

<?
if ($stream = fopen('http://www.sohu.com', 'r')) {
    // print all the page starting at the offset 10
    echo stream_get_contents($stream, -1, 10);
    fclose($stream);
}

if ($stream = fopen('http://www.sohu.net', 'r')) {
    // print the first 5 bytes
    echo stream_get_contents($stream, 5);
    fclose($stream);
}
?>

您可能感兴趣的文章:
php获取远程网址的html代码
php 获取远程网页内容简单函数
php 获取网站地址的函数代码
php dns轮询 获取远程网页内容的函数
php获取网页内容的三种方法
PHP 抓取内容中图片并下载保存的代码
php页面缓存的例子(减经cpu与mysql负担)
PHP 获取远程网页内容的代码
PHP计算页面执行时间的代码举例
php获取当前网址与页面内容的代码参考

[关闭]
~ ~