new StreamWriter($out_stream), ]); # add a file named "hello.txt" to output archive, containing # the string "hello world!" $zip->add_file('hello.txt', 'hello world!'); # finalize archive $zip->close(); # close output stream fclose($out_stream);