PHP: Call to undefined function gzdecode()

前端 未结 3 471
花落未央
花落未央 2020-12-17 17:28

I am getting a strange error message with the following piece of PHP code (I am not a PHP expert):

if ( $file_loc != NULL ) {
    if ( file_exists($file_loc)         


        
3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-17 18:21

    Function gzdecode is available since php 5.4

    My favorite solution is

    Uncompress gzip compressed http response

提交回复
热议问题