当前位置:首页 » 编程语言 » php文件读取

php文件读取

发布时间: 2022-01-14 13:59:47

A. php如何动态读取一个文件内容

PHP只有反复的去读这个文件(可以读出来和上次内容进行比较),不能设置一个机关--让文件内容的变化的时候自动调用PHP其读文件。

B. PHP读取文件内容

把文本里面的内容改成
<p style="color:red">you did not</p>
<p><strong> Your order could not be processed at this time.Please try again later.</strong></p>
<?php echo date('H:i,jS F Y'); ?>
试试

C. php读取文本文件内容~

示例代码1: 用file_get_contents 以get方式获取内容
代码如下:
<?php
$url='';
$html=file_get_contents($url);
//print_r($http_response_header);
ec($html);
printhr();
printarr($http_response_header);
printhr();
?>

示例代码2: 用fopen打开url, 以get方式获取内容
代码如下:
<?
$fp=fopen($url,'r');
printarr(stream_get_meta_data($fp));
printhr();
while(!feof($fp)){
$result.=fgets($fp,1024);
}
echo"url body:$result";
printhr();
fclose($fp);
?>

示例代码3:用file_get_contents函数,以post方式获取url
代码如下:
<?php
$data=array('foo'=>'bar');
$data=http_build_query($data);
$opts=array(
'http'=>array(
'method'=>'POST',
'header'=>"Content-type: application/x-www-form-urlencodedrn".
"Content-Length: ".strlen($data)."rn",
'content'=>$data
),
);
$context=stream_context_create($opts);
$html=file_get_contents('',false,$context);
echo$html;
?>

示例代码4:用fsockopen函数打开url,以get方式获取完整的数据,包括header和body
代码如下:
<?
functionget_url($url,$cookie=false){
$url=parse_url($url);
$query=$url[path]."?".$url[query];
ec("Query:".$query);
$fp=fsockopen($url[host],$url[port]?$url[port]:80,$errno,$errstr,30);
if(!$fp){
returnfalse;
}else{
$request="GET$queryHTTP/1.1rn";
$request.="Host:$url[host]rn";
$request.="Connection: Closern";
if($cookie)$request.="Cookie:$cookien";
$request.="rn";
fwrite($fp,$request);
while(!@feof($fp)){
$result.=@fgets($fp,1024);
}
fclose($fp);
return$result;
}
}
//获取url的html部分,去掉header
functionGetUrlHTML($url,$cookie=false){
$rowdata=get_url($url,$cookie);
if($rowdata)
{
$body=stristr($rowdata,"rnrn");
$body=substr($body,4,strlen($body));
return$body;
}
returnfalse;
}
?>

示例代码5:用fsockopen函数打开url,以POST方式获取完整的数据,包括header和body
代码如下:
<?
functionHTTP_Post($URL,$data,$cookie,$referrer=""){
// parsing the given URL
$URL_Info=parse_url($URL);
// Building referrer
if($referrer=="")// if not given use this script. as referrer
$referrer="111";
// making string from $data
foreach($dataas$key=>$value)
$values[]="$key=".urlencode($value);
$data_string=implode("&",$values);
// Find out which port is needed - if not given use standard (=80)
if(!isset($URL_Info["port"]))
$URL_Info["port"]=80;
// building POST-request:
$request.="POST ".$URL_Info["path"]." HTTP/1.1n";
$request.="Host: ".$URL_Info["host"]."n";
$request.="Referer:$referern";
$request.="Content-type: application/x-www-form-urlencodedn";
$request.="Content-length: ".strlen($data_string)."n";
$request.="Connection: closen";
$request.="Cookie:$cookien";
$request.="n";
$request.=$data_string."n";
$fp=fsockopen($URL_Info["host"],$URL_Info["port"]);
fputs($fp,$request);
while(!feof($fp)){
$result.=fgets($fp,1024);
}
fclose($fp);
return$result;
}
printhr();
?>

示例代码6:使用curl库,使用curl库之前,你可能需要查看一下php.ini,查看是否已经打开了curl扩展
代码如下:
<?
$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;
?>

关于curl库:
curl官方网站
curl 是使用URL语法的传送文件工具,支持FTP、FTPS、HTTP HTPPS SCP SFTP TFTP TELNET DICT FILE和LDAP。curl 支持SSL证书、HTTP POST、HTTP PUT 、FTP 上传,kerberos、基于HTT格式的上传、代理、cookie、用户+口令证明、文件传送恢复、http代理通道和大量其他有用的技巧
代码如下:
<?
functionprintarr(array$arr)
{
echo"<br> Row field count: ".count($arr)."<br>";
foreach($arras$key=>$value)
{
echo"$key=$value <br>";
}
}
?>

D. 关于PHP读写文件

相关
php函数

fopen()打开文件。
格式如:fopen("文件路径","r")。
fopen()函数有参数第一个参数要指明文件,第二个参数可以是r,w等,读文件时就可以是r,写文件时可以是w。
fwrite()和
fputs()写文件。
fclose()
关闭文件

fgets()读取记录。最常用的是以上这些函数。

E. PHP如何实现读取指定文件内的某些内容

PHP的 fgets(从文件指针中读指定内容)

语法:
fgets(filepointer)

filepointer,要读取的文件指针。如果成功,从文件中读取一行并返回字符串,如果失败,返回 FALSE。

示例:

<?php
$fp=fopen("test.txt","r");
if($fp)
{
for($i=1;!feof($fp);$i++)
{
echo"行".$i.":".fgets($fp)."<br/>";
}
}
else
{
echo"打开文件失败";
}
fclose($fp);
?>

假设test.txt的内容为:

hello world
hello cnblogs
hello heihaozi
hello everyone
页面输出的结果为:

行1 : hello world
行2 : hello cnblogs
行3 : hello heihaozi
行4 : hello everyone

F. php 读取txt文件内容

  1. 打开文件的模式有错误,改为下列的方式


  2. <?php

  3. $filepath="num.txt";

  4. $file = fopen($filepath,"r");

  5. $idsum=fgets($file);

  6. fclose($file);

  7. $file2 = fopen($filepath,"w");

  8. $idsum1=(integer)$idsum+1;

  9. echo "idsum的值为".(integer)$idsum."; idsum1的值为".$idsum1;

  10. fwrite($file2,$idsum1);

  11. fclose($file2);

  12. ?>


G. 如何使用PHP读取文本文件内容

示例代码如下:

<?php
$file='test.txt';
$content=file_get_contents($file);//读取文件中的内容
echo$content;//输出显示
?>


需要提示一点的是:

文本文件的编码格式要与 php 的 charset 编码,以及 php 文件的字符编码,要求一致,否则可能会显示乱码。

H. php 如何读取本机文件

你的问题也就是PHP读取客户端的文件问题。

道理上来讲,我认为是不可以的,因为PHP是运行在服务端的,而且也要保证客户端的安全吧?

但可能可以解决的方法我认为也有两种,你不妨试试!

一:

利用JS,但必须是IE浏览器内核!因为用到的是IE插件ActiveXObject

<!DOCTYPEhtml>
<htmllang="zh-CN"><head><metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">

<title>TestActiveXObject</title>
<script>
functionReadFiles(){
if(window.ActiveXObject){
//alert("yes");
varfso=newActiveXObject("Scripting.FileSystemObject");
varasd=fso.CreateTextFile("C:\a.txt");//创建文件
asd.WriteLine("56984566");
asd.close();
varkk=fso.OpenTextFile("c:\a.txt");//打开文件
while(!kk.atEndOfLine){
document.writeln(kk.readLine());//读取文件,并输出
}
}
else{
//alert("no");
}
}
</script></head>
<bodyonclick="ReadFiles();">ffffffffff
</body>
</html>

这是一段HTML里的JS,你可以参考!然后加以修改。

方法二:

是一个构思,不知道能否实现!

是做为客户端的,让程序自行上传你想要的文件,然后达到可以看到的目前

I. PHP文件读取问题

$myfile=fopen($filename);
少了一个必须的参数,读取内容的大小。如果是读取整个文件可以:
$myfile=fopen($filename,filesize($filename));
也可以读取指定大小,后面的单位我忘了是kb还是字节

J. php读取逐行读取文件

换个1mb的文本它肯定有空格换行,具体操作如下代码:

$file = file("welcome.txt");
foreach($file as &$line) echo $line.'<br />';

这个更方便, file()直接把文本按行转换成数组
fgets如果没指定第二参数,将直接读取到缓存结束为止, 其实它不以换行来循环的,它的第二参数也是限制每次读取的字符个数而已。

热点内容
扫无线密码在哪里扫 发布:2024-11-10 12:54:37 浏览:80
荣威ei6顶配配置有哪些 发布:2024-11-10 12:46:42 浏览:84
布密码箱多少 发布:2024-11-10 12:31:20 浏览:614
实时数据存储 发布:2024-11-10 12:23:06 浏览:38
android自动提示 发布:2024-11-10 12:22:23 浏览:45
python去掉字符串的换行符 发布:2024-11-10 12:21:15 浏览:381
python正则表达式语法 发布:2024-11-10 12:13:04 浏览:342
云服务器能做什么赚钱 发布:2024-11-10 11:46:50 浏览:931
我的世界手机版新手专用服务器 发布:2024-11-10 11:46:09 浏览:908
编程消防车 发布:2024-11-10 11:41:47 浏览:576