PHP readfile は基本的に、ファイルを読み取って出力バッファに書き込むために使用される PHP ライブラリの組み込み関数です。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
構文:
readfile ( string $file_name [, boolean $path = FALSE [, resource $context ]] ) : int
構文で使用されているパラメータ:
readfile() 関数とは別に、ファイルに対してさまざまな種類の操作を実行するために使用できる他の関数の一部を以下に示します。
この関数はファイルの読み取りにも使用され、ファイル全体を配列に読み取ります。
構文:
file ( string $file_name [, int $flag = 0 [, resource $context ]] ) : array
ここで、file_name は読み取るファイルへのパスです。フラグは、以下の定数から選択できるオプションのフィールドです:
成功すると配列内に存在するファイルを返し、失敗すると false を返します。
この関数は、ファイルと URL の両方を開くために使用できます。
fopen ( string $file_name , string $mode [, bool $use_include_path = FALSE [, resource $context ]] ) : resource
モード: このパラメータは、ストリームに付与する必要があるアクセスの種類を示します。以下にいくつかの重要なモードを示します:
成功した場合はファイル ポインタ リソースを返し、失敗した場合は false を返します。
この関数は、バイナリセーフなファイルの読み取りに使用されます。
構文:
fread ( resource $handle , int $length ) : string
ハンドルはファイル ポインターを参照するために使用されます。
ファイルは、以下の条件のいずれかに達するまで読み取られます:長さ (バイト単位) が読み取られている必要があり、EOF に達し、ソケット タイムアウトが発生します。 fgets()、fscanf()、ftell()、fwrite()、fopen()、fsockopen() は、PHP でのファイル操作に使用される他の関数です。
以下は PHP 読み取りファイルの例です:
コード:
<?php // it is writing content of file to output // buffer used in readfile() function echo readfile("file.txt"); ?>
出力:
これは、ローカル パスに存在するファイルを読み取る基本的な例を示しています。 readfile()関数のパラメータに指定したファイル名が作成され、そのファイル内に読み込む内容が存在することを確認してください。 readfile() 関数が使用されると、ファイルの内容が読み取られて出力に表示されます。
コード:
<?php / file contents written on output // buffer by readfile() function $file = @readfile("file.txt"); if (!$file) { print "File could not be opened"; } ?>
出力:
前の出力は、条件のない単純な例でした。この例では、特定の条件を使用してファイルの出力を読み取り、表示する方法を見てみましょう。 if ステートメントを使用して、ファイルが存在しないと仮定して印刷しています。
コード:
<?php $file_name = "file.txt"; $fh = fopen($file_name, 'r'); $data = fread($fh, filesize($file_name)); fclose($fh); echo $data; ?>
出力:
In this example, we are combining the use of multiple file read functions. As in all the above examples, first, we are giving the file name which needs to be read from. Then the mode of operation, ‘r’ is given to them indicating it can only be read. filesize() function takes the filename and returns the size of the file along with its data and assigns it to $data variable. By using fclose() function we are closing that file. Finally, the data is printed as output.
Code:
<?php $file_name = "file.txt"; $file = fopen( $file_name , "r" ); if( $file == false ) { echo ( "Error in opening file" ); exit(); } $size = filesize( $file_name ); $filetext = fread( $file, $size); fclose( $file ); echo ( "The size of input file in bytes is : $size\n" ); echo ("Printing details of file:\n"); echo ( $filetext ); ?>
Output:
Before running the code, make sure that the file to be read file.txt is created in the local file path. In this example first, we are declaring the file name to be read and opening that with the function fopen(). Suppose the file does not exist, using if condition we are throwing an error message. Finally, we are printing the file size and the content present in the input file.
As seen from all the above examples, readfile() is one of the main functions of PHP used for reading the file name specified in this function. Apart from readfile() we have covered a few other file operations which perform similar actions such as fopen, file, fread, fgets, fgetss, ftell, etc. A combination of all of these are basically used in accessing and performing operations on the input file.
以上がPHP 読み取りファイルの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。