Home
last modified time | relevance | path

Searched refs:reflection (Results 1 – 25 of 60) sorted by relevance

123

/PHP-7.4/ext/reflection/tests/
H A Dbug52057.phpt8 $reflection = new ReflectionClass('closure');
9 var_dump($reflection->hasMethod('__invoke')); // true
11 $reflection = new ReflectionClass($closure);
12 var_dump($reflection->hasMethod('__invoke')); // true
14 $reflection = new ReflectionObject($closure);
15 var_dump($reflection->hasMethod('__invoke')); // true
17 $reflection = new ReflectionClass('closure');
18 var_dump($h = $reflection->getMethod('__invoke')); // true
21 $reflection = new ReflectionClass($closure);
22 var_dump($h = $reflection->getMethod('__invoke')); // true
[all …]
H A DReflectionZendExtension.phpt9 $reflection = new ReflectionZendExtension('Zend OPcache');
10 var_dump($reflection->getAuthor());
11 var_dump($reflection->getCopyright());
12 var_dump($reflection->getName());
13 var_dump($reflection->getURL());
14 var_dump($reflection->getVersion() === PHP_VERSION);
15 var_dump(gettype($reflection->export('Zend OPcache', true)) === 'string');
H A DReflectionMethod_getDocComment_property_list.phpt21 $reflection = new ReflectionProperty('\X', 'x');
23 var_dump($reflection->getDocComment());
25 $reflection = new ReflectionProperty('\X', 'y');
27 var_dump($reflection->getDocComment());
29 $reflection = new ReflectionProperty('\X', 'z');
31 var_dump($reflection->getDocComment());
H A Dbug66430.phpt18 $reflection = new ReflectionObject($alpha);
20 $method = $reflection->getMethod("bravo");
25 echo "reflection of alpha.bravo: ", $method->invoke($alpha).PHP_EOL;
31 echo "reflection of c(alpha.bravo): ", $reflectionC->invoke().PHP_EOL;
36 reflection of alpha.bravo: Valid representation
42 reflection of c(alpha.bravo): Valid representation
H A Dbug64007.phpt5 $reflection = new ReflectionClass('Generator');
7 $generator = $reflection->newInstanceWithoutConstructor();
13 $generator = $reflection->newInstance();
H A DReflectionClass_isIterateable_variation1.phpt12 $reflection = new ReflectionClass($obj);
13 var_dump($reflection->isIterateable());
H A DReflectionExtension_export_basic.phpt8 ReflectionExtension::export("reflection", true);
10 ReflectionExtension::export("reflection", false);
H A DReflectionClass_isArray.phpt9 $reflection = new ReflectionFunction('testReflectionIsArray');
11 foreach ($reflection->getParameters() as $parameter) {
H A DReflectionClass_isIterateable_basic.phpt20 $reflection = new ReflectionClass($class);
21 var_dump($reflection->isIterateable());
H A DReflectionExtension_isPersistant.phpt5 $obj = new ReflectionExtension('reflection');
H A DReflectionExtension_isTemporary.phpt5 $obj = new ReflectionExtension('reflection');
H A D011.phpt5 $ext = new ReflectionExtension("reflection");
H A DReflectionExtension_getName_basic.phpt8 $obj = new ReflectionExtension('reflection');
H A DReflectionExtension_constructor_basic.phpt8 $obj = new ReflectionExtension('reflection');
/PHP-7.4/ext/oci8/tests/
H A Dreflection1.phpt11 reflection::export(new reflectionfunction('oci_bind_by_name'));
14 reflection::export(new reflectionfunction('oci_field_name'));
15 reflection::export(new reflectionfunction('oci_field_size'));
20 reflection::export(new reflectionfunction('oci_execute'));
21 reflection::export(new reflectionfunction('oci_cancel'));
22 reflection::export(new reflectionfunction('oci_fetch'));
32 reflection::export(new reflectionfunction('oci_parse'));
34 reflection::export(new reflectionfunction('oci_result'));
38 reflection::export(new reflectionfunction('oci_close'));
42 reflection::export(new reflectionfunction('oci_error'));
[all …]
/PHP-7.4/ext/reflection/
H A Dconfig.m41 PHP_NEW_EXTENSION(reflection, php_reflection.c, no,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
H A Dconfig.w323 EXTENSION("reflection", "php_reflection.c", false /* never shared */, "/DZEND_ENABLE_STATIC_TSRMLS_…
/PHP-7.4/ext/standard/tests/general_functions/
H A Dini_get_all.phpt15 var_dump(ini_get_all("reflection"));
18 var_dump(ini_get_all("reflection", false));
/PHP-7.4/Zend/tests/generators/
H A Dbug72523.phpt2 Bug #72523 (dtrace issue with reflection (failed test))
/PHP-7.4/ext/spl/tests/
H A Dbug70303.phpt2 Bug #70303 (Incorrect constructor reflection for ArrayObject)
H A Dbug71412.phpt2 Bug#71412 ArrayIterator reflection parameter info
/PHP-7.4/ext/session/tests/
H A Dbug74541.phpt2 Bug #74541 Wrong reflection on session_start()
/PHP-7.4/ext/openssl/tests/
H A Dbug75307.phpt2 Bug #75307 Wrong reflection for openssl_open function
/PHP-7.4/ext/standard/tests/random/
H A Dreflection.phpt2 Bug #74708 Wrong reflection on random_bytes and random_int
/PHP-7.4/ext/xmlreader/tests/
H A Dbug74457.phpt2 XMLReader: Bug #74457 Wrong reflection on XMLReader::expand

Completed in 96 milliseconds

123