1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 23:23:03 +02:00
Files
archived-php-src/ext
Remi Collet efa7f87de4 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
        )
...
2014-09-26 08:56:42 +02:00
..
2014-01-03 11:06:16 +08:00
2014-05-08 02:00:23 -07:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-09-01 16:40:50 +01:00
2014-01-03 11:06:16 +08:00
2014-08-17 21:33:41 +03:00
2014-01-03 11:06:16 +08:00
2014-08-17 15:48:22 +03:00
2014-06-08 13:50:22 -07:00
2014-07-08 15:04:09 -07:00
2014-09-16 10:22:34 +02:00
2014-01-03 11:06:16 +08:00
2014-03-11 11:51:35 +01:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-08-17 15:48:22 +03:00
2014-04-14 10:46:46 -07:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-06-20 13:57:38 +04:00
2014-08-15 23:26:21 +00:00
2014-02-24 17:02:16 -08:00
2014-07-30 02:34:46 +00:00
2014-07-30 10:39:25 +04:00
2014-01-03 11:06:16 +08:00
2014-08-17 15:48:22 +03:00
2014-06-16 23:30:44 +03:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-07-01 13:23:11 -07:00
2014-07-09 18:34:40 +08:00
2014-04-14 15:45:53 -07:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-08-17 15:48:22 +03:00
2014-06-18 00:12:33 +03:00
2014-08-17 21:33:41 +03:00
2014-09-19 20:12:24 +02:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-08-24 00:09:00 +02:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-01-03 11:06:16 +08:00
2014-04-01 10:12:06 +02:00
2014-01-03 11:06:16 +08:00
2014-08-21 22:43:25 +02:00