????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.170 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 : /home/b8009/php-5.6.22/ext/reflection/tests/ |
Upload File : |
--TEST-- ReflectionClass::getModifierNames() basic tests --CREDITS-- Felix De Vliegher <felix.devliegher@gmail.com> --FILE-- <?php class a {} abstract class b {} final class c {} class x { function __construct() {} function __destruct() {} private function a() {} private static function b() {} protected function c() {} protected static function d() {} public function e() {} public static function f() {} final function g() {} function h() {} } abstract class y { abstract function a(); abstract protected function b(); } function dump_modifierNames($class) { $obj = new ReflectionClass($class); var_dump($obj->getName(), Reflection::getModifierNames($obj->getModifiers())); } function dump_methodModifierNames($class) { $obj = new ReflectionClass($class); foreach($obj->getMethods() as $method) { var_dump($obj->getName() . "::" . $method->getName(), Reflection::getModifierNames($method->getModifiers())); } } dump_modifierNames('a'); dump_modifierNames('b'); dump_modifierNames('c'); dump_methodModifierNames('x'); dump_methodModifierNames('y'); ?> ==DONE== --EXPECT-- string(1) "a" array(0) { } string(1) "b" array(1) { [0]=> string(8) "abstract" } string(1) "c" array(1) { [0]=> string(5) "final" } string(14) "x::__construct" array(1) { [0]=> string(6) "public" } string(13) "x::__destruct" array(1) { [0]=> string(6) "public" } string(4) "x::a" array(1) { [0]=> string(7) "private" } string(4) "x::b" array(2) { [0]=> string(7) "private" [1]=> string(6) "static" } string(4) "x::c" array(1) { [0]=> string(9) "protected" } string(4) "x::d" array(2) { [0]=> string(9) "protected" [1]=> string(6) "static" } string(4) "x::e" array(1) { [0]=> string(6) "public" } string(4) "x::f" array(2) { [0]=> string(6) "public" [1]=> string(6) "static" } string(4) "x::g" array(2) { [0]=> string(5) "final" [1]=> string(6) "public" } string(4) "x::h" array(1) { [0]=> string(6) "public" } string(4) "y::a" array(2) { [0]=> string(8) "abstract" [1]=> string(6) "public" } string(4) "y::b" array(2) { [0]=> string(8) "abstract" [1]=> string(9) "protected" } ==DONE==