Чтение
$file_name = 'test.phar'; $phar_content = file_get_contents($file_name);
Запись
$outfile = 'out.phar' file_put_contents($outfile, $phar_content);
Удаление файла
$file_name = 'test.phar'; @unlink($file_name);
Last updated 1 year ago