php-src/Zend/tests/get_class_methods/get_class_methods_001.phpt
DanielEScherzer babf7a32bf
Zend/tests: organize some tests with sub directories (10) (#17920)
Add directories for tests relating to
- halting the compiler
- `declare()` usage
- exception handlers
- `get_class_methods()`
- `get_class_vars()`
- `isset()`
- name collisions

As well as organizing a couple of tests into existing sub directories along the
way

Work towards GH-15631
2025-02-25 09:48:52 +00:00

55 lines
722 B
PHP

--TEST--
get_class_methods(): Testing scope
--FILE--
<?php
abstract class X {
public function a() { }
private function b() { }
protected function c() { }
}
class Y extends X {
private function bb() { }
static public function test() {
var_dump(get_class_methods('X'));
var_dump(get_class_methods('Y'));
}
}
var_dump(get_class_methods('X'));
var_dump(get_class_methods('Y'));
Y::test();
?>
--EXPECT--
array(1) {
[0]=>
string(1) "a"
}
array(2) {
[0]=>
string(4) "test"
[1]=>
string(1) "a"
}
array(2) {
[0]=>
string(1) "a"
[1]=>
string(1) "c"
}
array(4) {
[0]=>
string(2) "bb"
[1]=>
string(4) "test"
[2]=>
string(1) "a"
[3]=>
string(1) "c"
}