I would like to read zip file with TXT file inside, but my zip exists on different url, not on the local machine. I tried both ways without success.
- $result = file_get_contents('zip://http://www.abcde.com/12345.zip#1234.txt'); or
- $fp = fopen('zip://http://www.abcde.com/12345.zip#1234.txt', 'r'); Any idea how to do it?