History log of /php-src/Zend/zend_builtin_functions.c (Results 201 – 225 of 908)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# c6982995 04-Mar-2017 Anatol Belski

Interned strings unification for TS/NTS

Hereby, interned strings are supported in thread safe PHP. The patch
implements two types of interned strings

- interning per process, st

Interned strings unification for TS/NTS

Hereby, interned strings are supported in thread safe PHP. The patch
implements two types of interned strings

- interning per process, strings are not freed till process end
- interning per request, strings are freed at request end

There is no runtime interning.

With Opcache, all the permanent iterned strings are copied into SHM on
startup, additional copying into SHM might happen on demand.

show more ...

Revision tags: php-7.1.3RC1, php-7.0.17RC1, php-7.1.2, php-7.0.16
# 06a03401 02-Feb-2017 Nikita Popov

Deprecate each()

Revision tags: php-7.0.16RC1, php-7.1.2RC1
# eaeecc52 30-Jan-2017 Nikita Popov

Deprecate create_function()

# 795a4c1b 02-Feb-2017 Nikita Popov

Merge branch 'PHP-7.1'


# e81f30ad 02-Feb-2017 Nikita Popov

Merge branch 'PHP-7.0' into PHP-7.1


# dd9cf234 31-Jan-2017 Mitch Hagstrand

BUG #73998: Numeric properties are not accessible from get_object_vars

# 306f55be 26-Jan-2017 Joe Watkins

Merge branch 'PHP-7.1'

* PHP-7.1:
Fixed #73973 - debug_zval_dump() assertion error for resource consts with --enable-debug


# 2d339fa4 26-Jan-2017 Joe Watkins

Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
Fixed #73973 - debug_zval_dump() assertion error for resource consts with --enable-debug


# f65ae82c 24-Jan-2017 andrewnester

Fixed #73973 - debug_zval_dump() assertion error for resource consts with --enable-debug

# e69c9d3b 23-Jan-2017 Joe Watkins

Merge branch 'PHP-7.1'

* PHP-7.1:
move decl to correct place


# 5589df12 23-Jan-2017 Joe Watkins

Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
move decl to correct place


# d6364679 23-Jan-2017 Joe Watkins

move decl to correct place

# 8782e847 22-Jan-2017 Joe Watkins

Merge branch 'PHP-7.1'

* PHP-7.1:
Fixed #73969 - Fixed segmentation fault when debug_print_backtrace called


# 8bda5420 22-Jan-2017 Joe Watkins

Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
Fixed #73969 - Fixed segmentation fault when debug_print_backtrace called


# 6f912f7c 22-Jan-2017 andrewnester

Fixed #73969 - Fixed segmentation fault when debug_print_backtrace called

Revision tags: php-5.6.30, php-7.0.15
# 141d1ba9 13-Jan-2017 Dmitry Stogov

Introduced "zend_type" - an abstraction for type-hinting representation.

Revision tags: php-5.6.30RC1, php-7.1.1RC1, php-7.0.15RC1
# dac6c639 04-Jan-2017 Sammy Kaye Powers

Update copyright headers to 2017

# 478f119a 04-Jan-2017 Sammy Kaye Powers

Update copyright headers to 2017

# d8382854 04-Jan-2017 Joe Watkins

Merge branch 'PHP-7.1'

* PHP-7.1:
get_defined_functions additional parameter to exclude disabled functions
news entry for PR #1312


# 6c916404 04-Jan-2017 Joe Watkins

Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
get_defined_functions additional parameter to exclude disabled functions
news entry for PR #1312


# 63d116e5 04-Jan-2017 Joe Watkins

Merge branch 'pull-request/1312' into PHP-7.0

* pull-request/1312:
get_defined_functions extra parameter to exclude disabled functions
news entry for PR #1312


# 9e29f841 02-Jan-2017 Sammy Kaye Powers

Update copyright headers to 2017

Revision tags: php-7.1.1, php-5.6.29, php-7.0.14, php-7.1.0
# 3e9bb03a 28-Nov-2016 Dmitry Stogov

Removed IS_TYPE_IMMUTABLE (it's the same as COPYABLE & !REFCOUED)

Revision tags: php-5.6.29RC1
# dd9ad094 22-Nov-2016 Nikita Popov

Fix get_class_vars() fast-path/slow-path discrepancies

Normalize to the fast-path behavior. In particular, make sure that
the the property visibility check is correct for property names

Fix get_class_vars() fast-path/slow-path discrepancies

Normalize to the fast-path behavior. In particular, make sure that
the the property visibility check is correct for property names that
are formatted like mangled private properties (but are not). This is
done by only calling zend_check_property_access() for INDIRECT
properties.

show more ...

Revision tags: php-7.0.14RC1
# a0502b89 14-Nov-2016 Andrea Faulds

Convert numeric keys in object/array casts

RFC: https://wiki.php.net/rfc/convert_numeric_keys_in_object_array_casts

This converts key types as appropriate in object to array and arr

Convert numeric keys in object/array casts

RFC: https://wiki.php.net/rfc/convert_numeric_keys_in_object_array_casts

This converts key types as appropriate in object to array and array to object
casts, as well as in get_object_vars().

show more ...

12345678910>>...37