????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.28 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/b8009/php-5.6.22/ext/phar/tests/tar/ |
Upload File : |
--TEST--
Bug #49910: no support for ././@LongLink for long filenames in phar tar support
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip"); ?>
<?php if (!extension_loaded("zlib")) die("skip"); ?>
--FILE--
<?php
$fname = str_replace('\\', '/', dirname(__FILE__) . '/files/Structures_Graph-1.0.3.tgz');
$tar = new PharData($fname);
$files = array();
foreach (new RecursiveIteratorIterator($tar) as $file) {
$files[] = str_replace($fname, '*', $file->getPathName());
}
print_r($files);
?>
===DONE===
--EXPECT--
Array
(
[0] => phar://*/Structures_Graph-1.0.3/LICENSE
[1] => phar://*/Structures_Graph-1.0.3/Structures/Graph/Manipulator/AcyclicTest.php
[2] => phar://*/Structures_Graph-1.0.3/Structures/Graph/Manipulator/TopologicalSorter.php
[3] => phar://*/Structures_Graph-1.0.3/Structures/Graph/Node.php
[4] => phar://*/Structures_Graph-1.0.3/Structures/Graph.php
[5] => phar://*/Structures_Graph-1.0.3/docs/generate.sh
[6] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph.html
[7] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph_Manipulator_AcyclicTest.html
[8] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph_Manipulator_TopologicalSorter.html
[9] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph_Node.html
[10] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_Manipulator_AcyclicTest_php.html
[11] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_Manipulator_TopologicalSorter_php.html
[12] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_Node_php.html
[13] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_php.html
[14] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/tutorial_Structures_Graph.pkg.html
[15] => phar://*/Structures_Graph-1.0.3/docs/html/classtrees_Structures_Graph.html
[16] => phar://*/Structures_Graph-1.0.3/docs/html/elementindex.html
[17] => phar://*/Structures_Graph-1.0.3/docs/html/elementindex_Structures_Graph.html
[18] => phar://*/Structures_Graph-1.0.3/docs/html/errors.html
[19] => phar://*/Structures_Graph-1.0.3/docs/html/index.html
[20] => phar://*/Structures_Graph-1.0.3/docs/html/li_Structures_Graph.html
[21] => phar://*/Structures_Graph-1.0.3/docs/html/media/banner.css
[22] => phar://*/Structures_Graph-1.0.3/docs/html/media/stylesheet.css
[23] => phar://*/Structures_Graph-1.0.3/docs/html/packages.html
[24] => phar://*/Structures_Graph-1.0.3/docs/html/todolist.html
[25] => phar://*/Structures_Graph-1.0.3/docs/tutorials/Structures_Graph/Structures_Graph.pkg
[26] => phar://*/Structures_Graph-1.0.3/tests/AllTests.php
[27] => phar://*/Structures_Graph-1.0.3/tests/testCase/BasicGraph.php
[28] => phar://*/package.xml
)
===DONE===