|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2018-08-21 11:11 UTC] cmb@php.net
[2018-08-21 12:15 UTC] requinix@php.net
[2021-01-18 17:44 UTC] cmb@php.net
-Summary: finfo_open does not work with phar:// magic files
+Summary: Document which parameters accept stream wrapper URLs
-Status: Open
+Status: Verified
-Type: Bug
+Type: Documentation Problem
-Package: PHAR related
+Package: *General Issues
[2021-01-18 17:44 UTC] cmb@php.net
[2023-05-08 12:25 UTC] fitnesscaredoctor at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 16:00:01 2025 UTC |
Description: ------------ Packing a magic file into a phar and using finfo_open(0, 'phar://test.phar/file.magic'); does not work. Try to create the .phar with the generator script and run it. It will fail. Test script: --------------- <?php $phar = new Phar('test.phar'); $phar->addFromString('test.magic', <<<'MGC' 0 string =<?php PHP text !:mime text/x-php MGC ); $phar->setStub(<<<'PHP' <?php $finfo = finfo_open(0, 'phar://' . __FILE__ . '/test.magic'); __HALT_COMPILER(); ?> PHP ); ?> Expected result: ---------------- no error. Actual result: -------------- $ php-5.6.0RC1 test.phar PHP Warning: finfo_open(/tmp/test/phar): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 Warning: finfo_open(/tmp/test/phar): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 PHP Warning: finfo_open(/tmp/test/phar): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 Warning: finfo_open(/tmp/test/phar): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 PHP Warning: finfo_open(/tmp/test/test.phar/test.magic): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 Warning: finfo_open(/tmp/test/test.phar/test.magic): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 PHP Notice: finfo_open(): Warning: using regular magic file `/tmp/test/test.phar/test.magic' in /tmp/test/test.phar on line 2 Notice: finfo_open(): Warning: using regular magic file `/tmp/test/test.phar/test.magic' in /tmp/test/test.phar on line 2 PHP Warning: finfo_open(/tmp/test/test.phar/test.magic): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 Warning: finfo_open(/tmp/test/test.phar/test.magic): failed to open stream: No such file or directory in /tmp/test/test.phar on line 2 PHP Warning: finfo_open(): Failed to load magic database at '/tmp/test/phar:/tmp/test/test.phar/test.magic'. in /tmp/test/test.phar on line 2 Warning: finfo_open(): Failed to load magic database at '/tmp/test/phar:/tmp/test/test.phar/test.magic'. in /tmp/test/test.phar on line 2