History log of /php-src/ext/standard/basic_functions_arginfo.h (Results 176 – 200 of 234)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 736b22dc 18-Feb-2020 Máté Kocsis

Add stubs for aliases

Closes GH-5187

# 7d0102df 17-Feb-2020 Christoph M. Becker

Revert "Replace @param annotations with type declarations"

This reverts commit c31029f335ca1b453af799805c43c37e959ad555.

# c31029f3 16-Feb-2020 Christoph M. Becker

Replace @param annotations with type declarations

# b442c89a 16-Feb-2020 Christoph M. Becker

Fix arginfo

These parameters accept int|float, since they are parsed with
`Z_PARAM_NUMBER`.

# d59bc807 18-Dec-2019 Máté Kocsis

Fix smaller issues with stubs

GH-5025

# 297b1f83 17-Dec-2019 Máté Kocsis

Fix return type of strval()

GH-5024

# d7b20823 16-Dec-2019 Máté Kocsis

Add stubs for standard library

Closes GH-5017

# 2ab123b8 09-Dec-2019 Máté Kocsis

Convert string|array union parameter types

Closes GH-4995

# beee92a8 12-Dec-2019 Máté Kocsis

Remove support for mixing parameter order in implode()

# 37c11714 20-Nov-2019 Máté Kocsis

Promote warnings to exceptions in password_*() functions

# 4782e8e2 11-Dec-2019 George Peter Banyard

Return empty string instead of NULL in serialize().

Modifiy its return type accordingly and arginfo.

# 51eefd80 10-Dec-2019 Máté Kocsis

Add stubs for standard library

# 9563449d 11-Nov-2019 Máté Kocsis

Add stubs for another batch of standard functions

# 29ef0772 17-Nov-2019 Máté Kocsis

Remove magic quotes legacy

# 63392602 17-Nov-2019 Máté Kocsis

Remove ezmlm_hash() function

# 144b41ce 17-Nov-2019 Máté Kocsis

Remove money_format() function

# 64468d1e 17-Nov-2019 Máté Kocsis

Remove convert_cyr_string() function

# b63c6252 17-Nov-2019 Máté Kocsis

Remove hebrevc() function

# a603c06e 05-Dec-2019 Nikita Popov

Support "string or array" in zpp

This is one of our more common argument unions. Usage is just
prototyped in a few places, certainly not a full conversion.

I'm removing the str_

Support "string or array" in zpp

This is one of our more common argument unions. Usage is just
prototyped in a few places, certainly not a full conversion.

I'm removing the str_replace.phpt test, because aparently it was
split up into smaller tests at some point, but the original has
not been removed.

Closes GH-4970.

show more ...

# 04deb532 20-Nov-2019 Máté Kocsis

Promote warning to exception in log() function

# 5624d2eb 01-Dec-2019 Tyson Andre

Make some opcache types consistent with reflection information

Remove functions such as filter_id() where reference counts and types are
identical to what's in opcache.

Remove n

Make some opcache types consistent with reflection information

Remove functions such as filter_id() where reference counts and types are
identical to what's in opcache.

Remove null types from zend_func_info.c that aren't in Reflection
(php would throw now)

Fix the Reflection type information for assert_options()

php > assert_options(ASSERT_CALLBACK, static function() {});
php > var_export(assert_options(ASSERT_CALLBACK));
Closure::__set_state(array(
))

Closes GH-4958.

show more ...

# c58b1233 16-Nov-2019 Máté Kocsis

Add union return types with one class

# 292a1aeb 15-Nov-2019 Nikita Popov

Support union types for args in gen stubs

Using this requires care! The zpp implementation for this union
must be consistent with the arginfo implementation!

Apart from array|ob

Support union types for args in gen stubs

Using this requires care! The zpp implementation for this union
must be consistent with the arginfo implementation!

Apart from array|object, this is probably only the case for
int|float right now.

show more ...

# 40dcf2bd 15-Nov-2019 Nikita Popov

password_hash() can't return false

# 27e83d0f 08-Nov-2019 Máté Kocsis

Add union return types for function stubs

12345678910