1
A
답변
0
<?php
$target = 'c:/temp/fileA.dat';
$sources = array(
'c:/temp/file1.bin',
'c:/temp/file2.dat',
'c:/temp/file3.foo',
'c:/temp/file4.'
);
foreach($sources as $src) {
$fp = fopen($src, 'rb') or die('fopen failed...');
file_put_contents($target, $fp, FILE_APPEND);
}
이 http://docs.php.net/fopen
http://docs.php.net/file_put_contents
[FREAD]
를 (참조 ... 나는 (file_get_contents & file_put_contents를하여) 많은 시도했지만 작동하는 것 같다하지 않습니다 http://php.net/ manual/en/function.fread.php)/[fwrite] (http://php.net/manual/en/function.fwrite.php)를 열어 'rb' 플래그로 열었습니다. –
"복사/b" – VolkerK