History log of /PHP-7.3/Zend/zend_API.c (Results 351 – 375 of 897)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 47c90277 03-Jan-2014 Xinchen Hui

Bump year


# c0d060f5 03-Jan-2014 Xinchen Hui

Bump year


Revision tags: php-5.4.24RC1, php-5.5.8RC1
# eeb37c40 17-Dec-2013 Xinchen Hui

Save one char compare


# 0fc8e6af 12-Dec-2013 Kalle Sommer Nielsen

Eliminate another straight forward TSRMLS_FETCH() in zend_startup_module()

# For THTTPD:
# The code that uses a call to this function is for older versions of PHP anyway so its not cover

Eliminate another straight forward TSRMLS_FETCH() in zend_startup_module()

# For THTTPD:
# The code that uses a call to this function is for older versions of PHP anyway so its not covered

# For Zend OpCache:
# Added a new define for 5.6 and wrapped the code around that so its still compatible with older version

show more ...


Revision tags: php-5.5.7, php-5.4.23, php-5.3.28
# 5d257626 28-Nov-2013 Dmitry Stogov

Removed unused "pHashFunction" argument in _zend_hash_init() and family (must be 99% source compatible)


# 57c1335f 28-Nov-2013 Dmitry Stogov

Don't check argument types for internal functions without type hinting


Revision tags: php-5.5.7RC1, php-5.4.23RC1
# 1a1e83a5 17-Nov-2013 krakjoe

export more Zend API


# f046189e 17-Nov-2013 krakjoe

export more Zend API


Revision tags: php-5.4.22, php-5.5.6
# 82cd3779 01-Nov-2013 Bob Weinand

Whitespace fix


# b45043a1 01-Nov-2013 Bob Weinand

converted several switches to ifs and made more opcache friendly


# 23617458 31-Oct-2013 Bob Weinand

Working commit for constant scalar expressions (with constants).
Tests will follow.


Revision tags: php-5.4.22RC1, php-5.5.6RC1, php-5.4.21, php-5.5.5, php-5.4.21RC1, php-5.5.5RC1
# 0d7a6388 26-Sep-2013 Nikita Popov

Implement variadic function syntax

As per RFC: https://wiki.php.net/rfc/variadics


Revision tags: php-5.5.4, php-5.4.20
# 96b1c214 13-Sep-2013 Nikita Popov

Provide more macros for handling of interned strings

* str_erealloc behaves like erealloc for normal strings, but will
use emalloc+memcpy for interned strings.
* str_estrndup be

Provide more macros for handling of interned strings

* str_erealloc behaves like erealloc for normal strings, but will
use emalloc+memcpy for interned strings.
* str_estrndup behaves like estrndup for normal strings, but will
not copy interned strings.
* str_strndup behaves like zend_strndup for normal strings, but
will not copy interned strings.
* str_efree_rel behaves like efree_rel for normal strings, but
will not free interned strings.
* str_hash will return INTERNED_HASH for interned strings and
compute it using zend_hash_func for normal strings.

show more ...


Revision tags: php-5.5.4RC1, php-5.4.20RC1
# dfc6feb6 29-Aug-2013 Dmitry Stogov

Fixed bug #61759 (class_alias() should accept classes with leading backslashes). (Julien)


# 747daa53 29-Aug-2013 Xinchen Hui

Avoid compiler warning


# 72027cd0 29-Aug-2013 Adam Harvey

Fix bug #65579 (Using traits with get_class_methods causes segfault).

Specifically, this checks if there are trait aliases defined in the class scope
before attempting to dereference the

Fix bug #65579 (Using traits with get_class_methods causes segfault).

Specifically, this checks if there are trait aliases defined in the class scope
before attempting to dereference the first trait alias. This handles the case
where a trait alias was used in a child trait but no aliases exist in the
concrete class.

show more ...


Revision tags: php-5.5.3, php-5.4.19, php-5.5.2, php-5.4.18, php-5.5.2RC1, php-5.4.18RC2, php-5.5.1, php-5.4.18RC1, php-5.3.27, php-5.4.17
# 9cf3e653 24-Jun-2013 Xinchen Hui

Fixed bug (is_callable() triggers Fatal Error)

This bug is also exists in 5.4, and previous fix by dsp is not complete
for __callStatic stituation, see test script


# ecd9d762 24-Jun-2013 David Soria Parra

Fix #65108 (is_callable() triggers Fatal Error)

We have to check if the fcall info cache contains a pointer if we
use __call, otherwise we endup in a static lookup.


Revision tags: php-5.5.0, php-5.3.27RC1, php-5.4.17RC1
# 02e4d7a2 10-Jun-2013 Stanislav Malyshev

Merge branch 'pull-request/341'

* pull-request/341: (23 commits)
typofixes


# ac40c0b5 10-Jun-2013 Stanislav Malyshev

Merge branch 'pull-request/341'

* pull-request/341: (23 commits)
typofixes


Revision tags: php-5.5.0RC3, php-5.3.26, php-5.4.16, php-5.5.0RC2, php-5.3.26RC1, php-5.4.16RC1, php-5.5.0RC1, php-5.3.25, php-5.4.15, php-5.3.25RC1, php-5.5.0beta4, php-5.4.15RC1, php-5.4.14, php-5.3.24, php-5.5.0beta3, php-5.3.24RC1, php-5.4.14RC1, php-5.5.0beta2
# 7dce0194 21-Mar-2013 Xinchen Hui

Fixed bug #64239 (Debug backtrace changed behavior since 5.4.10 or 5.4.11)


Revision tags: php-5.5.0beta1
# 7687b8b8 19-Mar-2013 Anatol Belski

fix C90 compat


# 7b0993bf 19-Mar-2013 Dmitry Stogov

Fixed bug #63976 (Parent class incorrectly using child constant in class property)


# b7788c52 15-Mar-2013 Nikita Popov

Fix wrong macro usage and add missing NEWS entry


Revision tags: php-5.3.23, php-5.4.13, php-5.5.0alpha6, php-5.3.23RC1, php-5.4.13RC1, php-5.3.22, php-5.5.0alpha5, php-5.4.12
# fcc6611d 16-Feb-2013 Nikita Popov

Add support for non-scalar Iterator keys in foreach

RFC: https://wiki.php.net/rfc/foreach-non-scalar-keys


1...<<11121314151617181920>>...36