您的位置:

php获取内容,php获取数据库内容

本文目录一览:

php获取指定网页内容

一、用file_get_contents函数,以post方式获取url

?php

$url= '';

$data= array('foo'= 'bar');

$data= http_build_query($data);

$opts= array(

'http'= array(

'method'= 'POST',

'header'="Content-type: application/x-www-form-urlencoded\r\n"  .

"Content-Length: "  . strlen($data) . "\r\n",

'content'= $data

)

);

$ctx= stream_context_create($opts);

$html= @file_get_contents($url,'',$ctx);

二、用file_get_contents以get方式获取内容

?php

$url='';

$html= file_get_contents($url);

echo$html;

?

三、用fopen打开url, 以get方式获取内容

?php

$fp= fopen($url,'r');

$header= stream_get_meta_data($fp);//获取报头信息

while(!feof($fp)) {

$result.= fgets($fp, 1024);

}

echo"url header: {$header} br":

echo"url body: $result";

fclose($fp);

?

四、用fopen打开url, 以post方式获取内容

?php

$data= array('foo2'= 'bar2','foo3'='bar3');

$data= http_build_query($data);

$opts= array(

'http'= array(

'method'= 'POST',

'header'="Content-type: application/x-www-form-

urlencoded\r\nCookie:cook1=c3;cook2=c4\r\n"  .

"Content-Length: "  . strlen($data) . "\r\n",

'content'= $data

)

);

$context= stream_context_create($opts);

$html= fopen(';id2=i4','rb',false, $context);

$w=fread($html,1024);

echo$w;

?

五、使用curl库,使用curl库之前,可能需要查看一下php.ini是否已经打开了curl扩展

?php

$ch= curl_init();

$timeout= 5;

curl_setopt ($ch, CURLOPT_URL, '');

curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);

$file_contents= curl_exec($ch);

curl_close($ch);

echo$file_contents;

?

PHP怎么获取里面的内容

1、用file_get_contents,以get方式获取内容。

2、用fopen打开url,以get方式获取内容。

3、使用curl库,使用curl库之前,可能需要查看一下php.ini是否已经打开了curl扩展。

4、用file_get_contents函数,以post方式获取url。

php如何读取文本指定的内容?

php读取文件内容:

-----第一种方法-----fread()--------

?php

$file_path = "test.txt";

if(file_exists($file_path)){

$fp = fopen($file_path,"r");

$str = fread($fp,filesize($file_path));//指定读取大小,这里把整个文件内容读取出来

echo $str = str_replace("\r\n","br /",$str);

}

?

--------第二种方法------------

?php

$file_path = "test.txt";

if(file_exists($file_path)){

$str = file_get_contents($file_path);//将整个文件内容读入到一个字符串中

$str = str_replace("\r\n","br /",$str);

echo $str;

}

?

-----第三种方法------------

?php

$file_path = "test.txt";

if(file_exists($file_path)){

$fp = fopen($file_path,"r");

$str = "";

$buffer = 1024;//每次读取 1024 字节

while(!feof($fp)){//循环读取,直至读取完整个文件

$str .= fread($fp,$buffer);

}

$str = str_replace("\r\n","br /",$str);

echo $str;

}

?

-------第四种方法--------------

?php

$file_path = "test.txt";

if(file_exists($file_path)){

$file_arr = file($file_path);

for($i=0;$icount($file_arr);$i++){//逐行读取文件内容

echo $file_arr[$i]."br /";

}

/*

foreach($file_arr as $value){

echo $value."br /";

}*/

}

?

----第五种方法--------------------

?php

$file_path = "test.txt";

if(file_exists($file_path)){

$fp = fopen($file_path,"r");

$str ="";

while(!feof($fp)){

$str .= fgets($fp);//逐行读取。如果fgets不写length参数,默认是读取1k。

}

$str = str_replace("\r\n","br /",$str);

echo $str;

}

?

php获取内容,php获取数据库内容

2022-11-20
php获取数据库表内容,php获取数据库的某条信息

2022-11-29
php获取网页全部内容(php怎么获取数据库中的数据)

2022-11-10
php获取文章内容,php读取php文件

2023-01-05
php获取数据库20条数据,php获取数据库内容

2022-11-27
phpword读取内容和样式(php获取文本内容)

2022-11-13
php取json内容,php获取数据库内容返回json

2022-11-25
php读取数据库表的值(php读取数据表内容)

2022-11-13
php抓取div数据(php获取div指定内容)

2022-11-13
php怎么获取js输出的值,php获取input内容

本文目录一览: 1、如何用PHP获取JS里函数的值? (不用ajax的话) 2、PHP如何调用JS函数并获取其返回的数据? 3、PHP如何获取JS变量及变量的值 4、php怎么获取当前页面 javas

2023-12-08
查看网页的php内容,php查询数据库内容

2022-11-26
php抓取网页内容经验总结,php抓取页面指定内容

2022-11-18
curl获取js内容(curl获取返回数据)

本文目录一览: 1、求CURL获取JAVASCRIPT生成动态内容的方法 - 技术问答 2、用php 怎么抓取js+ajax动态生成的页面内容 3、php curl怎么获取JavaScript动态值

2023-12-08
php获取api接口xml数据(php获取api接口指定内容

2022-11-10
php获取指定div内容,获取div的文本

2022-11-30
如何获得php相关资料(php如何获取网页内容)

2022-11-09
php构建json数据,php获取json中的内容

本文目录一览: 1、PHP如何把数据写入JSON文件并在另一PHP文件读取JSON数据? 2、PHP怎么生成JSON列表啊? 3、php 怎么向json 中添加json数据 4、如何构造如下json的

2023-12-08
php抓取网页和分析,php抓取网页内容

2023-01-06
php获取如何获取真实ip(php提取网页内容)

2022-11-13
php抓取网页上的指定内容(php截取网页指定内容)

2022-11-15