]> granicus.if.org Git - php/log
php
4 years agoAccept bool in snmp_set_(quick|enum)_print()
Nikita Popov [Thu, 8 Oct 2020 09:11:51 +0000 (11:11 +0200)]
Accept bool in snmp_set_(quick|enum)_print()

The integer parameter here is actually a boolean.
snmp_set_quick_print() already documented it as such, and
snmp_get_quick_print() was already returning a boolean.

4 years agoUpdate ext/xsl parameter names
Nikita Popov [Wed, 7 Oct 2020 15:55:46 +0000 (17:55 +0200)]
Update ext/xsl parameter names

Additionally normalize to using $namespace rather than $uri for
namespace parameters, including in XMLReader and XMLWriter. I went
with that one as it is currently used by DOM, SimpleXML and XSL --
and our DOM parameter names follow the DOM specification.

Closes GH-6295.

4 years agoUpdate ext/xml parameter names
Nikita Popov [Thu, 8 Oct 2020 08:01:23 +0000 (10:01 +0200)]
Update ext/xml parameter names

Closes GH-6297.

4 years agoUpdate ext/dba parameter names
Nikita Popov [Wed, 7 Oct 2020 13:14:41 +0000 (15:14 +0200)]
Update ext/dba parameter names

Closes GH-6292.

4 years agoChange calling convention of zval_update_constant[_ex]() to fastcall.
Dmitry Stogov [Wed, 7 Oct 2020 23:04:38 +0000 (02:04 +0300)]
Change calling convention of zval_update_constant[_ex]() to fastcall.

4 years agoPass arguments to cdecl functions through preallocated stack slots
Dmitry Stogov [Wed, 7 Oct 2020 21:52:30 +0000 (00:52 +0300)]
Pass arguments to cdecl functions through preallocated stack slots

4 years agoAdd more hints for register allocator
Dmitry Stogov [Wed, 7 Oct 2020 17:38:52 +0000 (20:38 +0300)]
Add more hints for register allocator

4 years agoMerge branch 'PHP-7.4' into master
Christoph M. Becker [Wed, 7 Oct 2020 15:50:24 +0000 (17:50 +0200)]
Merge branch 'PHP-7.4' into master

* PHP-7.4:
  Fix #77040: tidyNode::isHtml() is completely broken

4 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Wed, 7 Oct 2020 15:47:40 +0000 (17:47 +0200)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix #77040: tidyNode::isHtml() is completely broken

4 years agoFix #77040: tidyNode::isHtml() is completely broken
Christoph M. Becker [Wed, 7 Oct 2020 10:45:43 +0000 (12:45 +0200)]
Fix #77040: tidyNode::isHtml() is completely broken

The documentation of `tidyNode::isHtml()` states that this method
"checks if a node is part of a HTML document".  That is, of course,
nonsense, since a tidyNode is "an HTML node in an HTML file, as
detected by tidy."

What this method is actually supposed to do is to check whether a node
is an element (unless it is the root element).  This has been broken by
commit d8eeb8e[1], which assumed that `enum TidyNodeType` would
represent flags of a bitmask, what it does not.

[1] <http://git.php.net/?p=php-src.git;a=commit;h=d8eeb8e28673236bca3f066ded75037a5bdf6378>

Closes GH-6290.

4 years agodon't display default value for variadic
Remi Collet [Wed, 7 Oct 2020 14:30:18 +0000 (16:30 +0200)]
don't display default value for variadic

4 years agoFixed incorrect behavior of observer API.
Dmitry Stogov [Wed, 7 Oct 2020 14:06:53 +0000 (17:06 +0300)]
Fixed incorrect behavior of observer API.

ZEND_HANDLE_EXCEPTION might call zend_observer_fcall_end() even if exception is cought by function. The fix moved zend_observer_fcall_end() into a right place and remove OBSERVER sepecialization for ZEND_HANDLE_EXCEPTION handler.

4 years agoMerge branch 'PHP-7.4'
Nikita Popov [Wed, 7 Oct 2020 13:03:56 +0000 (15:03 +0200)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #80194

4 years agoFixed bug #80194
Nikita Popov [Wed, 7 Oct 2020 13:03:12 +0000 (15:03 +0200)]
Fixed bug #80194

We should strip NOPs from unreachable_free blocks as well, to make
sure that the free really is the first op.

4 years agoFix test
Christoph M. Becker [Wed, 7 Oct 2020 12:57:28 +0000 (14:57 +0200)]
Fix test

The upper limit is different for 32bit and 64bit, but we are testing
the lower limit only, so can use a placeholder.

4 years agoOptimize out MAY_BE_LONG +/- 0 and MAY_BE_DOUBLE +/- 0.0
Dmitry Stogov [Wed, 7 Oct 2020 12:23:17 +0000 (15:23 +0300)]
Optimize out MAY_BE_LONG +/- 0 and MAY_BE_DOUBLE +/- 0.0

4 years agoMerge branch 'PHP-7.4' into master
Christoph M. Becker [Wed, 7 Oct 2020 11:28:22 +0000 (13:28 +0200)]
Merge branch 'PHP-7.4' into master

* PHP-7.4:
  Fix #80185: jdtounix() fails after 2037

4 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Wed, 7 Oct 2020 11:24:55 +0000 (13:24 +0200)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix #80185: jdtounix() fails after 2037

4 years agoFix #80185: jdtounix() fails after 2037
Christoph M. Becker [Wed, 7 Oct 2020 08:38:30 +0000 (10:38 +0200)]
Fix #80185: jdtounix() fails after 2037

There is no such thing as the "end of the unix epoch", and if it was,
it would certainly not be 2037-10-11T02:00:00.  There is, however,
potential integer overflow which we need to avoid.

Closes GH-6288.

4 years agoUpdate ext/ffi parameter names
Nikita Popov [Tue, 6 Oct 2020 12:34:03 +0000 (14:34 +0200)]
Update ext/ffi parameter names

Closes GH-6282.

4 years agoUpdate ext/spl parameter names
Nikita Popov [Tue, 6 Oct 2020 12:58:45 +0000 (14:58 +0200)]
Update ext/spl parameter names

Closes GH-6284.

4 years agoAvoid namespaced class symbol clashes in gen_stub
Nikita Popov [Wed, 7 Oct 2020 10:13:52 +0000 (12:13 +0200)]
Avoid namespaced class symbol clashes in gen_stub

Add the namespace prefix (using underscores) to both the arginfo
name and the method declaration name.

4 years agoSupport "static" type in gen_stub
Nikita Popov [Wed, 7 Oct 2020 09:34:14 +0000 (11:34 +0200)]
Support "static" type in gen_stub

4 years agoUpdate ext/tidy parameter names
Nikita Popov [Tue, 6 Oct 2020 12:49:04 +0000 (14:49 +0200)]
Update ext/tidy parameter names

Closes GH-6283.

4 years agoImprove parameter names in ext/sqlite3
Dharman [Tue, 15 Sep 2020 17:42:38 +0000 (18:42 +0100)]
Improve parameter names in ext/sqlite3

Closes GH-6264

4 years agoMerge branch 'PHP-7.4'
Nikita Popov [Tue, 6 Oct 2020 14:34:02 +0000 (16:34 +0200)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix bug #80126

4 years agoFix bug #80126
Nikita Popov [Tue, 6 Oct 2020 14:30:58 +0000 (16:30 +0200)]
Fix bug #80126

When performing an unlinked instanceof, we also need to consider
interfaces of parent classes, as they may not have been inherited
yet.

4 years agoEliminate check
Dmitry Stogov [Tue, 6 Oct 2020 12:50:37 +0000 (15:50 +0300)]
Eliminate check

4 years agoMake $use_less_memory a boolean parameter
Nikita Popov [Tue, 6 Oct 2020 11:07:21 +0000 (13:07 +0200)]
Make $use_less_memory a boolean parameter

4 years agoUpdate ext/bz2 parameter names
Nikita Popov [Tue, 6 Oct 2020 11:06:15 +0000 (13:06 +0200)]
Update ext/bz2 parameter names

Closes GH-6280.

4 years agoUpdate ext/pcntl parameter names
Nikita Popov [Tue, 6 Oct 2020 09:23:13 +0000 (11:23 +0200)]
Update ext/pcntl parameter names

Closes GH-6278.

4 years agoOptimize out double memory load
Dmitry Stogov [Tue, 6 Oct 2020 10:32:55 +0000 (13:32 +0300)]
Optimize out double memory load

4 years agoUpdate ext/sockets parameter names
Nikita Popov [Mon, 5 Oct 2020 14:53:13 +0000 (16:53 +0200)]
Update ext/sockets parameter names

Also change $max_length to $length in a number of filesystem APIs,
where our usage was inconsistent.

Closes GH-6276.

4 years agoUpdate ext/calendar parameter names
Nikita Popov [Tue, 6 Oct 2020 08:11:36 +0000 (10:11 +0200)]
Update ext/calendar parameter names

Closes GH-6277.

4 years agoFixed bug #80190
Nikita Popov [Tue, 6 Oct 2020 08:20:27 +0000 (10:20 +0200)]
Fixed bug #80190

4 years agoUpdate ext/posix parameter names
Nikita Popov [Mon, 5 Oct 2020 14:34:03 +0000 (16:34 +0200)]
Update ext/posix parameter names

Closes GH-6275.

4 years agoReview parameter names in ext/xmlreader
Dik Takken [Thu, 1 Oct 2020 18:55:36 +0000 (20:55 +0200)]
Review parameter names in ext/xmlreader

Closes GH-6255.

4 years agoDon't separate array parameter
Christoph M. Becker [Sat, 3 Oct 2020 11:39:37 +0000 (13:39 +0200)]
Don't separate array parameter

Closes GH-6243.

4 years agoExpose php_during_module_startup() and php_during_module_shutdown()
Sammy Kaye Powers [Fri, 2 Oct 2020 22:19:07 +0000 (15:19 -0700)]
Expose php_during_module_startup() and php_during_module_shutdown()

This can be handy when trying to determine if it is safe to access request globals amongst other things.

Closes GH-6265

4 years agoUse range inference to eliminate useless comparisons
Dmitry Stogov [Mon, 5 Oct 2020 19:33:45 +0000 (22:33 +0300)]
Use range inference to eliminate useless comparisons

4 years agoFix trace range inference
Dmitry Stogov [Mon, 5 Oct 2020 19:33:18 +0000 (22:33 +0300)]
Fix trace range inference

4 years agoMerge branch 'PHP-7.4' into master
Christoph M. Becker [Mon, 5 Oct 2020 15:48:44 +0000 (17:48 +0200)]
Merge branch 'PHP-7.4' into master

* PHP-7.4:
  Fix #46050: odbc_next_result corrupts prepared resource

4 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Mon, 5 Oct 2020 15:47:21 +0000 (17:47 +0200)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix #46050: odbc_next_result corrupts prepared resource

4 years agoFix #46050: odbc_next_result corrupts prepared resource
Christoph M. Becker [Mon, 5 Oct 2020 15:46:37 +0000 (17:46 +0200)]
Fix #46050: odbc_next_result corrupts prepared resource

When resetting the result's values, we also have to reset its numcols.

4 years agoAdd @generate-legacy-arginfo tag
Nikita Popov [Mon, 5 Oct 2020 13:47:26 +0000 (15:47 +0200)]
Add @generate-legacy-arginfo tag

4 years agoUpdate PDO parameter names
Nikita Popov [Mon, 5 Oct 2020 11:06:59 +0000 (13:06 +0200)]
Update PDO parameter names

Followup to previous changes:
 * Use camel case, as PDO uses a camel case OO API.
 * Use &$var instead of &$bind_var or &$param.
 * Use $column instead of $index. We have cases (both inside PDO
   and in other DB exts) where columns can also be represented as
   strings, so $column is the safer generic name.

Closes GH-6272.

4 years agoImprove gen_stub.php - drop --legacy option, generate file is exists - add --help...
Remi Collet [Mon, 5 Oct 2020 13:20:16 +0000 (15:20 +0200)]
Improve gen_stub.php - drop --legacy option, generate file is exists - add --help option - add debug "Saved ..." message

4 years agoFix bug #80184
Nikita Popov [Mon, 5 Oct 2020 13:23:31 +0000 (15:23 +0200)]
Fix bug #80184

4 years agoReview parameter names in ext/pspell
Máté Kocsis [Thu, 1 Oct 2020 21:44:33 +0000 (23:44 +0200)]
Review parameter names in ext/pspell

Closes GH-6257

4 years agoReview parameter names in ext/zlib
Máté Kocsis [Thu, 1 Oct 2020 08:34:18 +0000 (10:34 +0200)]
Review parameter names in ext/zlib

Closes GH-6250

4 years agoThrow from XmlReader::expand() if DOM extension missing
Nikita Popov [Mon, 5 Oct 2020 10:31:48 +0000 (12:31 +0200)]
Throw from XmlReader::expand() if DOM extension missing

Otherwise it is hard to uphold the arginfo contract for this
function -- we cannot simply mirror the zpp call, as the class
entry it is based on does not exist.

4 years agoMerge branch 'PHP-7.4'
Nikita Popov [Mon, 5 Oct 2020 08:48:04 +0000 (10:48 +0200)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix -Wimplicit-function-declaration in configure

4 years agoMerge branch 'PHP-7.3' into PHP-7.4
Nikita Popov [Mon, 5 Oct 2020 08:46:46 +0000 (10:46 +0200)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix -Wimplicit-function-declaration in configure

4 years agoFix -Wimplicit-function-declaration in configure
Nikita Popov [Mon, 5 Oct 2020 08:43:58 +0000 (10:43 +0200)]
Fix -Wimplicit-function-declaration in configure

As this is an error with xcode 12, see bug #80171.

4 years agoadd note about is_callable change
Remi Collet [Fri, 2 Oct 2020 15:34:07 +0000 (17:34 +0200)]
add note about is_callable change

4 years agoFix #64060: lstat_stat_variation7.phpt fails on certain file systems
Christoph M. Becker [Wed, 23 Sep 2020 13:34:17 +0000 (15:34 +0200)]
Fix #64060: lstat_stat_variation7.phpt fails on certain file systems

Closes GH-6194.

4 years agoDeclare FFI\CType in namespace
Nikita Popov [Fri, 2 Oct 2020 15:53:45 +0000 (17:53 +0200)]
Declare FFI\CType in namespace

Now that it is supported, declare that CType is part of the FFI
namespace, not a freestanding class.

4 years agoUse a subrountine to check for valid OID strings
George Peter Banyard [Thu, 1 Oct 2020 18:02:49 +0000 (19:02 +0100)]
Use a subrountine to check for valid OID strings

Closes 6260

4 years agoSupport specifying linkage for generate-function-entries
Nikita Popov [Fri, 2 Oct 2020 15:21:16 +0000 (17:21 +0200)]
Support specifying linkage for generate-function-entries

The linkage can be specified as the argument to the
@generate-function-entries tag. Test this on zend_test.

4 years agoAdd partial namespace support to gen_stub
Nikita Popov [Fri, 2 Oct 2020 15:07:46 +0000 (17:07 +0200)]
Add partial namespace support to gen_stub

4 years agoAdd gen_stub --legacy flag
Nikita Popov [Fri, 2 Oct 2020 12:40:11 +0000 (14:40 +0200)]
Add gen_stub --legacy flag

This flag generates an arginfo file that discards all type and
default value information. As such, it is compatible with old
(and very old) PHP versions.

Intended for use by extensions to generate one arginfo file for
PHP 8 and one for older versions.

4 years agoMerge branch 'PHP-7.4' into master
Christoph M. Becker [Fri, 2 Oct 2020 13:10:19 +0000 (15:10 +0200)]
Merge branch 'PHP-7.4' into master

* PHP-7.4:
  Fix out-of-bounds write

4 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Fri, 2 Oct 2020 13:04:38 +0000 (15:04 +0200)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix out-of-bounds write

4 years agoFix out-of-bounds write
K.Kosako [Mon, 21 Sep 2020 03:58:29 +0000 (12:58 +0900)]
Fix out-of-bounds write

Fixes CVE-2020-26159.

Backported from <https://github.com/kkos/oniguruma/commit/cbe9f8bd9cfc6c3c87a60fbae58fa1a85db59df0>.

4 years agoReview parameter names in ext/ftp
Máté Kocsis [Thu, 1 Oct 2020 18:12:22 +0000 (20:12 +0200)]
Review parameter names in ext/ftp

Closes GH-6254

4 years agoReturn correct result code for division by zero
Nikita Popov [Fri, 2 Oct 2020 10:08:00 +0000 (12:08 +0200)]
Return correct result code for division by zero

Turns out we do need to return FAILURE here on div by zero
exception. Use a three-way return value from div_function_base.

Fixes oss-fuzz #25975.

4 years agoReview parameter names in ext/exif
Máté Kocsis [Thu, 1 Oct 2020 21:20:09 +0000 (23:20 +0200)]
Review parameter names in ext/exif

Closes GH-6256

4 years agoReview parameter names in ext/enchant
Máté Kocsis [Thu, 1 Oct 2020 21:52:07 +0000 (23:52 +0200)]
Review parameter names in ext/enchant

Closes GH-6258

4 years agoReview parameter names in ext/pcre
Máté Kocsis [Thu, 1 Oct 2020 22:20:45 +0000 (00:20 +0200)]
Review parameter names in ext/pcre

Closes GH-6259

4 years agoCopy optimization for (BINARY_OP/ACCIGN + SEND_VAL)
Dmitry Stogov [Fri, 2 Oct 2020 09:06:02 +0000 (12:06 +0300)]
Copy optimization for (BINARY_OP/ACCIGN + SEND_VAL)

4 years agoFixed JIT for BINARY_OP with expected overflow
Dmitry Stogov [Fri, 2 Oct 2020 08:01:35 +0000 (11:01 +0300)]
Fixed JIT for BINARY_OP with expected overflow

4 years agoFixed possible incorrect register usage
Dmitry Stogov [Fri, 2 Oct 2020 07:48:45 +0000 (10:48 +0300)]
Fixed possible incorrect register usage

4 years agoAdd UPGRADING note for substr() behavior
Nikita Popov [Fri, 2 Oct 2020 07:39:15 +0000 (09:39 +0200)]
Add UPGRADING note for substr() behavior

[ci skip]

4 years agoMerge branch 'PHP-7.4'
Matteo Beccati [Fri, 2 Oct 2020 07:34:32 +0000 (09:34 +0200)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  [ci skip] moved soap fix to 7.4.11
  [ci skip] moved soap fix to 7.3.23

4 years ago[ci skip] moved soap fix to 7.4.11
Matteo Beccati [Fri, 2 Oct 2020 07:33:50 +0000 (09:33 +0200)]
[ci skip] moved soap fix to 7.4.11

When committing I didn't notice that version had been just bumped

4 years agoMerge branch 'PHP-7.3' into PHP-7.4
Matteo Beccati [Fri, 2 Oct 2020 07:33:20 +0000 (09:33 +0200)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  [ci skip] moved soap fix to 7.3.23

4 years ago[ci skip] moved soap fix to 7.3.23
Matteo Beccati [Fri, 2 Oct 2020 07:32:52 +0000 (09:32 +0200)]
[ci skip] moved soap fix to 7.3.23

When committing I didn't notice that version had been just bumped

4 years agoReview parameter names in ext/sysvshm
Máté Kocsis [Thu, 1 Oct 2020 08:09:27 +0000 (10:09 +0200)]
Review parameter names in ext/sysvshm

Closes GH-6249

4 years agoReview parameter names in ext/sysvsem
Máté Kocsis [Thu, 1 Oct 2020 08:00:43 +0000 (10:00 +0200)]
Review parameter names in ext/sysvsem

Closes GH-6248

4 years agoReview parameter names in ext/sysvmsg
Máté Kocsis [Thu, 1 Oct 2020 07:53:57 +0000 (09:53 +0200)]
Review parameter names in ext/sysvmsg

Closes GH-6247

4 years agoClenup BINARY_OP + SEND_VAL optimization
Dmitry Stogov [Thu, 1 Oct 2020 19:39:58 +0000 (22:39 +0300)]
Clenup BINARY_OP + SEND_VAL optimization

4 years agoAdd test instantiating all objects
Nikita Popov [Thu, 1 Oct 2020 15:10:56 +0000 (17:10 +0200)]
Add test instantiating all objects

Intended to find issues in opaque object destructors.

Closes GH-6251.

4 years agoFixed bug #80121
Nikita Popov [Thu, 1 Oct 2020 15:05:23 +0000 (17:05 +0200)]
Fixed bug #80121

The issue affected both CurlHandle and CurlMultiHandle. I'll have
to double check this for other resource->object conversions as well.

4 years agoFix out of bounds offset handling with empty needle
Nikita Popov [Thu, 1 Oct 2020 14:41:51 +0000 (16:41 +0200)]
Fix out of bounds offset handling with empty needle

For strrpos with positive out of bounds offsets was not detected.

4 years agoAllow empty needle in grapheme_str*pos, grapheme_str*str
Christian Schneider [Wed, 30 Sep 2020 14:52:04 +0000 (16:52 +0200)]
Allow empty needle in grapheme_str*pos, grapheme_str*str

For consistency with str* and mb_str* functions.

Closes GH-6245.
Closes php/php-tasks#20.

4 years agoSupport GC for AppendIterator
Nikita Popov [Thu, 1 Oct 2020 14:18:23 +0000 (16:18 +0200)]
Support GC for AppendIterator

This also requires adding GC support for ArrayIterator internal
iterators.

4 years agoFix bug #65387
Nikita Popov [Thu, 1 Oct 2020 14:12:56 +0000 (16:12 +0200)]
Fix bug #65387

Add GC support to dual_it. This is still missing AppendIterator
support.

4 years agoImprove parameter names in ext/xmlwriter
Dik Takken [Thu, 24 Sep 2020 10:06:06 +0000 (12:06 +0200)]
Improve parameter names in ext/xmlwriter

Closes GH-6202.

4 years agoMerge branch 'PHP-7.4'
Dmitry Stogov [Thu, 1 Oct 2020 10:19:40 +0000 (13:19 +0300)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Backport of a partial fix for bug Bug #76982 (memory leak declaring closure in included file).

4 years agoMerge branch 'PHP-7.3' into PHP-7.4
Dmitry Stogov [Thu, 1 Oct 2020 10:19:27 +0000 (13:19 +0300)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Backport of a partial fix for bug Bug #76982 (memory leak declaring closure in included file).

4 years agoBackport of a partial fix for bug Bug #76982 (memory leak declaring closure in includ...
Dmitry Stogov [Thu, 1 Oct 2020 10:18:21 +0000 (13:18 +0300)]
Backport of a partial fix for bug Bug #76982 (memory leak declaring closure in included file).

4 years agoRemove deprecated functions from php-ldap
Côme Chilliet [Thu, 1 Oct 2020 08:11:43 +0000 (10:11 +0200)]
Remove deprecated functions from php-ldap

Remove ldap_control_paged_result and ldap_control_paged_result_response
 which have been deprecated in PHP 7.4, in favor of new $controls
 parameters for ldap request functions.

4 years agoReview parameter names in ext/gettext
Máté Kocsis [Tue, 29 Sep 2020 20:38:27 +0000 (22:38 +0200)]
Review parameter names in ext/gettext

Closes GH-6241

4 years agoReview parameter names in ext/shmop
Máté Kocsis [Tue, 29 Sep 2020 19:55:39 +0000 (21:55 +0200)]
Review parameter names in ext/shmop

Closes GH-6238

4 years agoReview parameter names in ext/session
Máté Kocsis [Tue, 29 Sep 2020 20:21:06 +0000 (22:21 +0200)]
Review parameter names in ext/session

Closes GH-6239

4 years agoGive preference to ENTER->RECURSIVE_CALL trace over ENTER->RETURN
Dmitry Stogov [Wed, 30 Sep 2020 09:21:15 +0000 (12:21 +0300)]
Give preference to ENTER->RECURSIVE_CALL trace over ENTER->RETURN

4 years agoReview parameter names in ext/readline
Máté Kocsis [Tue, 29 Sep 2020 20:32:23 +0000 (22:32 +0200)]
Review parameter names in ext/readline

Closes GH-6240

4 years agoReview parameter names in ext/opcache
Máté Kocsis [Tue, 29 Sep 2020 19:41:37 +0000 (21:41 +0200)]
Review parameter names in ext/opcache

Closes GH-6237

4 years agoReview parameter names in ext/json
Máté Kocsis [Tue, 29 Sep 2020 19:35:58 +0000 (21:35 +0200)]
Review parameter names in ext/json

Closes GH-6236

4 years agoMerge branch 'PHP-7.4'
Dmitry Stogov [Wed, 30 Sep 2020 08:00:50 +0000 (11:00 +0300)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed hex char parsing