????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.139.239.16 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/reflection/tests/ |
Upload File : |
--TEST-- ReflectionClass::isIterateable() --CREDITS-- Robin Fernandes <robinf@php.net> Steve Seear <stevseea@php.net> --FILE-- <?php Interface ExtendsIterator extends Iterator { } Interface ExtendsIteratorAggregate extends IteratorAggregate { } Class IteratorImpl implements Iterator { public function next() {} public function key() {} public function rewind() {} public function current() {} public function valid() {} } Class IterarorAggregateImpl implements IteratorAggregate { public function getIterator() {} } Class ExtendsIteratorImpl extends IteratorImpl { } Class ExtendsIteratorAggregateImpl extends IterarorAggregateImpl { } Class A { } $classes = array('Traversable', 'Iterator', 'IteratorAggregate', 'ExtendsIterator', 'ExtendsIteratorAggregate', 'IteratorImpl', 'IterarorAggregateImpl', 'ExtendsIteratorImpl', 'ExtendsIteratorAggregateImpl', 'A'); foreach($classes as $class) { $rc = new ReflectionClass($class); echo "Is $class iterable? "; var_dump($rc->isIterateable()); } echo "\nTest invalid params:\n"; $rc = new ReflectionClass('IteratorImpl'); var_dump($rc->isIterateable(null)); var_dump($rc->isIterateable(null, null)); var_dump($rc->isIterateable(1)); var_dump($rc->isIterateable(1.5)); var_dump($rc->isIterateable(true)); var_dump($rc->isIterateable('X')); var_dump($rc->isIterateable(null)); echo "\nTest static invocation:\n"; ReflectionClass::isIterateable(); ?> --EXPECTF-- Is Traversable iterable? bool(false) Is Iterator iterable? bool(false) Is IteratorAggregate iterable? bool(false) Is ExtendsIterator iterable? bool(false) Is ExtendsIteratorAggregate iterable? bool(false) Is IteratorImpl iterable? bool(true) Is IterarorAggregateImpl iterable? bool(true) Is ExtendsIteratorImpl iterable? bool(true) Is ExtendsIteratorAggregateImpl iterable? bool(true) Is A iterable? bool(false) Test invalid params: Warning: ReflectionClass::isIterateable() expects exactly 0 parameters, 1 given in %s on line 34 NULL Warning: ReflectionClass::isIterateable() expects exactly 0 parameters, 2 given in %s on line 35 NULL Warning: ReflectionClass::isIterateable() expects exactly 0 parameters, 1 given in %s on line 36 NULL Warning: ReflectionClass::isIterateable() expects exactly 0 parameters, 1 given in %s on line 37 NULL Warning: ReflectionClass::isIterateable() expects exactly 0 parameters, 1 given in %s on line 38 NULL Warning: ReflectionClass::isIterateable() expects exactly 0 parameters, 1 given in %s on line 39 NULL Warning: ReflectionClass::isIterateable() expects exactly 0 parameters, 1 given in %s on line 40 NULL Test static invocation: Fatal error: Non-static method ReflectionClass::isIterateable() cannot be called statically in %s on line 43