1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 12:13:02 +02:00
Files
archived-php-src/ext
Greg Beaver be023d6f62 much better fix for the problem of phar://c:\path\to\blah.phar
don't use php_parse_url() at all, and always unixify paths on copied strings.
our modification was modifying the zval original string, so a user would pass in
phar://c:\path\to\blah.phar

and their string would change to phar://c:/path/to/blah.phar - bad.

Now using

include 'phar://' . __FILE__ . '/index.php';

works on both unix and windows seamlessly, as well as $a = new Phar(__FILE__)

for use in the loader stub
2007-11-19 23:10:05 +00:00
..
2007-11-08 11:39:10 +00:00
2007-11-19 13:57:02 +00:00
2007-11-19 08:21:58 +00:00
2006-11-07 21:45:20 +00:00
2007-09-28 12:54:42 +00:00
2007-11-05 01:14:44 +00:00
2007-11-06 14:31:08 +00:00
2007-11-01 19:13:28 +00:00
MFB
2007-11-08 19:41:57 +00:00
2007-11-16 12:29:29 +00:00
2007-11-08 17:29:06 +00:00
2007-10-10 14:32:01 +00:00
2007-09-29 11:26:51 +00:00
2007-10-07 14:00:20 +00:00
2007-11-13 23:37:09 +00:00
2007-11-06 15:29:32 +00:00
2007-11-19 15:55:48 +00:00
2007-11-06 09:54:34 +00:00
2007-11-02 16:19:57 +00:00
2007-11-19 11:12:21 +00:00