Roc*_*mat 53
尝试使用zip://包装器:
$handle = fopen('zip://test.zip#test.txt', 'r');
$result = '';
while (!feof($handle)) {
$result .= fread($handle, 8192);
}
fclose($handle);
echo $result;
Run Code Online (Sandbox Code Playgroud)
你也可以用file_get_contents:
$result = file_get_contents('zip://test.zip#test.txt');
echo $result;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
22146 次 |
| 最近记录: |