History log of /PHP-7.4/ext/reflection/php_reflection.c (Results 251 – 275 of 759)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# ee5b30fa 09-Oct-2014 Nikita Popov

Remove support for classes without class entries

get_class_entry must be non-NULL and return non-NULL.


# b3869914 04-Oct-2014 Johannes Schlüter

Fix accidental edit in previous commit


# 136dd53a 04-Oct-2014 Johannes Schlüter

Fix arginfo


# bd9a2346 03-Oct-2014 Dmitry Stogov

Replaced EG(This) and EX(object) with EX(This).
Internal functions now recieves zend_execute_data as the first argument.


Revision tags: php-5.5.18RC1, php-5.6.1
# efa7f87d 26-Sep-2014 Remi Collet

Fixed bug #68103 Dupplicate entry in Reflection

$ php -r '$r=new ReflectionExtension("pthreads"); print_r($r->getClassNames());'
Array
(
[0] => Threaded
[1] => stacka

Fixed bug #68103 Dupplicate entry in Reflection

$ php -r '$r=new ReflectionExtension("pthreads"); print_r($r->getClassNames());'
Array
(
[0] => Threaded
[1] => stackable
[2] => Thread
[3] => Worker
[4] => Mutex
[5] => Cond
[6] => Collectable
[7] => Pool
)

In getClasses() output, it is possible to compare key (ex "stackable")
with $obj->name (ex "Threaded") to detect class alias.

...
[Threaded] => ReflectionClass Object
(
[name] => Threaded
)
[stackable] => ReflectionClass Object
(
[name] => Threaded
)
...

show more ...


Revision tags: php-5.6.2
# 51901c9f 23-Sep-2014 krakjoe

swap some standard module properties _ex for std mod properties


# b3aebda9 20-Sep-2014 krakjoe

native tls initial patch


# d0cb7153 19-Sep-2014 Johannes Schlüter

s/PHP 5/PHP 7/


# bccc6531 19-Sep-2014 Dmitry Stogov

Avoid double IS_INTERNED() check


Revision tags: php-5.4.33, php-5.5.17
# 079409bb 15-Sep-2014 Nikita Popov

Switch (un)mangle property name to size_t and zend_string

Also use the _ex variants where possible.


# ebc6da56 13-Sep-2014 Nikita Popov

zend_get_property_info takes a zend_string* now


# 734d0b6b 14-Sep-2014 Anatol Belski

use nice way to achieve the property name length


# f1ba5389 14-Sep-2014 Anatol Belski

reduce struct size by 8 bytes on 64 bit


# 0b40abf4 14-Sep-2014 Anatol Belski

avoid repeated strlen() usage


Revision tags: php-5.6.1RC1, php-5.5.17RC1, php-5.4.33RC1
# e51677b2 02-Sep-2014 Dmitry Stogov

fixed reference counting


# 88d7ca44 01-Sep-2014 Dmitry Stogov

Refactored INI subsystem to use zend_string* instead of char*


# 257ed406 27-Aug-2014 Anatol Belski

's' works with size_t round 2


# 32344808 27-Aug-2014 Anatol Belski

first show to make 's' work with size_t


Revision tags: php-5.6.0
# 202e8db1 26-Aug-2014 Anatol Belski

fixed several long vs zend_long casts


Revision tags: POST_AST_MERGE, PRE_AST_MERGE
# 6f9f0bf2 25-Aug-2014 Anatol Belski

master renames phase 2


# c3e3c98e 25-Aug-2014 Anatol Belski

master renames phase 1


Revision tags: POST_64BIT_BRANCH_MERGE, PRE_64BIT_BRANCH_MERGE
# fb8c4110 21-Aug-2014 Anatol Belski

fix zpp


Revision tags: php-5.5.16, php-5.4.32
# 1169de3e 16-Aug-2014 Anatol Belski

fix some cases with fast zpp


# cb25136f 16-Aug-2014 Anatol Belski

fix macros in the 5 basic extensions


Revision tags: POST_PHPNG_MERGE, PRE_PHPNG_MERGE
# 87afa6bd 14-Aug-2014 Tjerk Meesters

Fixes missing Reflector interface constraints being enforced by the engine


1...<<11121314151617181920>>...31