📜  PHP | zip_entry_read()函数

📅  最后修改于: 2022-05-13 01:56:34.029000             🧑  作者: Mango

PHP | zip_entry_read()函数

zip_entry_read()函数是PHP中的一个内置函数,用于从打开的 zip 存档条目中读取内容。正在读取 zip 条目,可以将要返回的字节数作为参数发送给 zip_entry_read()函数,如果成功则返回指定 zip 条目的内容,否则返回PHP警告。

句法:

string zip_entry_read( $zip_entry, $length )

参数:此函数接受两个参数,如上所述和如下所述。

  • $zip_entry:它是一个强制参数,它指定了 zip 入口资源。
  • $length:它是一个可选参数,它指定要返回的字节数。

返回值:成功时返回指定 zip 条目的内容,否则返回PHP警告。

错误和异常:

  • 如果 zip 存档无效,则 zip_entry_read()函数会返回 ER_OPEN 错误。
  • 如果 zip 存档为空,则 zip_entry_read()函数会返回 ER_NOZIP 错误。

下面的程序说明了PHP中的 zip_entry_read()函数:

方案一:

");
        echo("File content: " . $file_content);
   
        // Closing a zip archive entry
        zip_entry_close($zip_entry);
    } 
    else
        echo("Failed to Open.");
}
  
// Closin zip file.
zip_close($zip_handle);
?>

输出:

File: articles/geeks successfully opened. 
File content: Welcome to GeeksforGeeks. It is a computer science portal
where you can learn programming.

方案二

");
        echo($file_content);
        echo("

");            // Closing a zip archive entry         zip_entry_close($zip_entry);     }      else         echo("Failed to Open."); }     // Closing a zip archive zip_close($zip_handle); ?>

输出:

File Name: articles/geeks is opened Successfully. 
Welcome to GeeksforGeeks. It is a computer science portal where you
can learn programming.

File Name: articles/geeks1 is opened Successfully. 
A Computer Science portal for geeks. It contains well written, well
thought and well-explained computer science and programming articles,
quizzes and many more. 

相关文章:

  • PHP | zip_entry_name()函数
  • PHP | zip_read()函数
  • PHP | zip_entry_filesize()函数

参考: 函数 : PHP 。 PHP