History log of /PHP-7.4/ext/phar/phar_object.c (Results 126 – 150 of 281)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.6.0, POST_AST_MERGE, PRE_AST_MERGE
# 4d997f63 25-Aug-2014 Anatol Belski

master renames phase 3


# c3e3c98e 25-Aug-2014 Anatol Belski

master renames phase 1


Revision tags: POST_64BIT_BRANCH_MERGE, PRE_64BIT_BRANCH_MERGE, php-5.5.16
# 888ef26c 20-Aug-2014 Anatol Belski

yet trivial fixes


Revision tags: php-5.4.32
# 8704e392 19-Aug-2014 Anatol Belski

ported ext/phar


# 63d3f0b8 19-Aug-2014 Anatol Belski

basic macro replacements, all at once


# d790eceb 16-Aug-2014 Xinchen Hui

Fixed version id


# 617b1759 15-Aug-2014 Xinchen Hui

Better version checking


Revision tags: POST_PHPNG_MERGE, PRE_PHPNG_MERGE
# 243383a8 14-Aug-2014 Dmitry Stogov

Fixed windows build


Revision tags: php-5.6.0RC4, php-5.3.29
# 01c8aee7 13-Aug-2014 Dmitry Stogov

cleanup


Revision tags: php-5.5.16RC1, php-5.4.32RC1, php-5.3.29RC1, php-5.6.0RC3, php-5.5.15, php-5.4.31, php-5.4.31RC1, php-5.5.15RC1
# e65e013e 08-Jul-2014 Christian Weiske

Fix bug #67587: Redirection loop on nginx with FPM

Redirection will work correctly as long as PATH_INFO is available,
e.g. via the following nginx configuration:

set $path_i

Fix bug #67587: Redirection loop on nginx with FPM

Redirection will work correctly as long as PATH_INFO is available,
e.g. via the following nginx configuration:

set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;

show more ...


# 0bf50a83 08-Jul-2014 Christian Weiske

Fix bug #67587: Redirection loop on nginx with FPM

Redirection will work correctly as long as PATH_INFO is available,
e.g. via the following nginx configuration:

set $path_i

Fix bug #67587: Redirection loop on nginx with FPM

Redirection will work correctly as long as PATH_INFO is available,
e.g. via the following nginx configuration:

set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;

show more ...


# 5aa91be5 07-Jul-2014 Dmitry Stogov

Simplify call-frame handling


# 6bf24f4d 04-Jul-2014 Dmitry Stogov

Removed EG(active_symbol_table) and use corresponding value from EG(current_execute_data)


# c4d99ec9 02-Jul-2014 Dmitry Stogov

Removed EG(called_scope) and use corresponding value from EG(current_execute_data)


# 4b09dd69 02-Jul-2014 Dmitry Stogov

Removed EG(active_op_array) and use corresponding value from EG(current_execute_data)


Revision tags: php-5.6.0RC2
# b7715c7e 30-Jun-2014 Dmitry Stogov

Refactored parameter passing mechanism.

In PHP-5.6 and below each argument passed to user function was copies on VM stack twice.
Now we always have ZEND_INIT_FCALL (or simular) opcode th

Refactored parameter passing mechanism.

In PHP-5.6 and below each argument passed to user function was copies on VM stack twice.
Now we always have ZEND_INIT_FCALL (or simular) opcode that pushes "call frame" on top of VM stack.
"Call frame" is actually the same zend_execute_data structure.
All the following ZEND_SEND instructions push arguments on top of the stack in a way that they directly comes into corresponding CV variables of the called frame. Extra arguments are copied at the end of stack frame (after all CV and TMP variables) on function enterance.

There are two minor incompatibilities:
1) It's not allowed to decalre functions redefining arguments e.g. "function foo($a,$a) {}".
2) func_get_arg() and func_get args() return the current value of argument and not the original value that was sent.

show more ...


Revision tags: php-5.4.30, php-5.5.14, php-5.6.0RC1, php-5.5.14RC1, php-5.4.30RC1, php-5.6.0beta4
# aca34b12 28-May-2014 Dmitry Stogov

Use new zend_hash API


Revision tags: php-5.4.29, php-5.5.13
# 78e4f03c 19-May-2014 Dmitry Stogov

Fixed incorrect efree()


# 4ea10696 19-May-2014 Dmitry Stogov

Prevent double resource free


Revision tags: php-5.5.13RC1, php-5.6.0beta3, php-5.4.29RC1
# 4288f048 12-May-2014 Dmitry Stogov

ext/phar support (incomplete)


# fb3b8de9 11-May-2014 Felipe Pena

- Fixed off-by-one in phar_build (patch by crrodriguez at opensuse dot org)


# 2a31934a 08-May-2014 Dmitry Stogov

Support for ext/phar (incomplete)


# df5ad846 08-May-2014 Dmitry Stogov

Support for ext/phar (incomplete)


Revision tags: php-5.6.0beta2, php-5.5.12, php-5.4.28, php-5.4.28RC1, php-5.5.12RC1
# 050d7e38 15-Apr-2014 Dmitry Stogov

Cleanup (1-st round)


Revision tags: php-5.6.0beta1, php-5.4.27, php-5.5.11, php-5.5.11RC1, php-5.4.27RC1, php-5.5.10, php-5.4.26, php-5.6.0alpha3, php-5.4.26RC1, php-5.5.10RC1, php-5.6.0alpha2
# 3f4c877b 11-Feb-2014 Xinchen Hui

Use better data structures (incomplete)


12345678910>>...12