今天是个好日子
我有个问题。我的 webroot/files 中有一个文件夹,其中包含一些文档,主要是 doc 文件。我想阅读文件的所有内容。例如,如果有 2 个文件,即 users.docx 和funds.docx。我希望能够打开每个文件,读取其内容并将它们写入单个文档。
到目前为止,我的代码只写入了第一个文件,但新写入的文件的大小与两个读取文件的大小相同。
function writeToFile($insId,$path,$hospital){
$data = '';
$my_file = WWW_ROOT . 'files' . DS . 'instructions' . DS . $insId . DS ."Final Report ".$insId.".rtf";
$handle = fopen($my_file, 'w')or die('Cannot open file: '.$my_file); //implicitly creates file
foreach($hospital as $h){
$data .= file_get_contents($path.'/'.$h, false);
$data .= "\n";
echo($h."\n");
}
file_put_contents($my_file, $data);
fclose($handle);
}