2 つの csv ファイルを結合してから、結合されたファイル全体を読み取る必要があります。
問題は、phpがfwrite
仕事をしているときに関数を実行し続けることです。
そのため、fwrite
開始時に一時停止/停止が必要です。
static function dictionary($path) {
$language_pack = Doo::conf()->SITE_PATH . Doo::conf()->PROTECTED_FOLDER . 'languages/' . $lang . '/language_pack.csv';
Doo::joinFiles(array($lang_path, $common_lang_path), $language_pack);
// a pause must be done here until Doo::joinFiles finish it's job
return Doo::translator('Csv', $language_pack, array('delimiter' => '|','enclosure' => '"'));
}
// this function joins array of files and will merge them into single file
static function joinFiles(array $files, $result) {
if(!is_array($files)) {
throw new Exception('`$files` must be an array');
}
$wH = fopen($result, "w+");
foreach($files as $key => $file) {
$fh = fopen($file, "r");
while(!feof($fh)) {
fwrite($wH, fgets($fh));
}
fclose($fh);
unset($fh);
fwrite($wH, "\n"); //usually last line doesn't have a newline
}
fclose($wH);
unset($wH);
}
実行するDoo::dictionary()
と、language_pack.csv ファイルには最初の csv ファイルの内容のみが含まれます。