php がファイルを読み取れない問題の解決策: 1. 関数 [fread()] を使用して読み取った文字列を返し、エラーが発生した場合は FALSE を返します; 2. 関数 [fgets()] を使用します] ハンドルの文字列を指します。 ファイルから 1 行を読み取り、最大 [length - 1] バイトの長さの文字列を返します。
#php がファイルを読み取れない場合の解決策:
#1.fread
string fread ( int $handle , int $length )
<?php $filename = "/usr/local/something.txt"; $handle = fopen($filename, "r");//读取二进制文件时,需要将第二个参数设置成'rb' //通过filesize获得文件大小,将整个文件一下子读到一个字符串中 $contents = fread($handle, filesize ($filename)); fclose($handle); ?>
<?php $handle = fopen('http://www.baidu.com', 'r'); $content = ''; while(!feof($handle)){ $content .= fread($handle, 8080); } echo $content; fclose($handle); ?>
<?php $handle = fopen('http://www.baidu.com', 'r'); $content = ''; while(false != ($a = fread($handle, 8080))){//返回false表示已经读取到文件末尾 $content .= $a; } echo $content; fclose($handle); ?>
関連学習の推奨事項:php プログラミング (ビデオ)
2.fgets
string fgets ( int $handle [, int $length ] ) fgets() は、指定されたファイルから行を読み取ります。ハンドルによって最大 length - 1 バイトの長さの文字列を返します。改行文字 (戻り値に含まれる)、EOF、または長さ - 1 バイト (いずれか最初に発生した方) が読み取られたときに停止します。長さが指定されていない場合、デフォルトは 1K、つまり 1024 バイトになります。<?php $handle = fopen('./file.txt', 'r'); while(!feof($handle)){ echo fgets($handle, 1024); } fclose($handle); ?>
3.fgetss
string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )
<?php $handle = fopen('./file.txt', 'r'); while(!feof($handle)){ echo fgetss($handle, 1024, '<br>'); } fclose($handle); ?>
4.file
array file ( string $filename [, int $use_include_path [, resource $context ]] )
<?php $a = file('./file.txt'); foreach($a as $line => $content){ echo 'line '.($line + 1).':'.$content; } ?>
5.readfile
int readfile ( string $filename [, bool $use_include_path [, resource $context ]] )
<?php $size = readfile('./file.txt'); echo $size; ?>
6.file_get_contents
string file_get_contents ( string $filename [, bool $use_include_path [, resource $context [, int $offset [, int $maxlen ]]]] )
<?php $ctx = stream_context_create(array( 'http' => array( 'timeout' => 1 //设置超时 ) ) ); echo file_get_contents("http://www.baidu.com/", 0, $ctx); ?>
7.fpassthru
int fpassthru ( resource $handle )
<?php header("Content-Type:text/html;charset=utf-8"); $handle = fopen('./test2.php', 'r'); fseek($handle, 1024);//将指针定位到1024字节处 fpassthru($handle); ?>
関連する学習に関する推奨事項:
以上がPHPがファイルを読み取れない場合の対処方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。