[PHP] require on compressed files

2001-02-28 Thread Shane Wegner
Hi all, I am trying to get the expected behavior of: require("filename.gz"); or require("filename.bz2"); to work properly. Beyond using gzopen, gzread, and gzwrite to do it using a temp file, is there any other way to include a compressed file with PHP code? I thought of using gzread and passin

Re: [PHP] require on compressed files

2001-03-01 Thread Christian Reiniger
On Wednesday 28 February 2001 22:58, you wrote: > I am trying to get the expected behavior of: > require("filename.gz"); > or > require("filename.bz2"); > to work properly. Why do you want to do that? If that file is just a normal include file, compression just adds unneccessary overhead. If it