Is there a way to uncompress .Z files using php?

前端 未结 2 411
终归单人心
终归单人心 2021-01-21 02:37

Is there a way to uncompress .Z files using php?

2条回答
  •  野性不改
    2021-01-21 03:30

    Nowadays uncompress is just nothing more than a one-liner invoking gzip with proper options. To use gzip, you don't have execute shell. You can use Zlib extension instead. I'd try something like:

提交回复
热议问题