The recode_file function will put the file position indicator at the end of each files, so if you want to re-use the handles use fseek beforehand.
(PHP 4, PHP 5, PHP 7 < 7.4.0)
recode_file — コード変換指令に基づきファイルからファイルにコード変換する
コード変換指令 request
に基づきファイルハンドル
input
が指すファイルをファイルハンドル
output
が指すファイルにコード変換します。
request
変換指令の型。
input
入力として使用する ローカルファイルハンドルリソース。
output
出力として使用する ローカルファイルハンドルリソース。
応じることができない場合に false
、それ以外の場合に true
を返します。
例1 基本的な recode_file() の例
<?php
$input = fopen('input.txt', 'r');
$output = fopen('output.txt', 'w');
recode_file("us..flat", $input, $output);
?>
この関数は現在リモートファイル(URL)を指すファイルハンドルを処理 できません。ファイルハンドルは共にローカルなファイルを指している 必要があります。
The recode_file function will put the file position indicator at the end of each files, so if you want to re-use the handles use fseek beforehand.