Searched refs:reflection (Results 1 – 25 of 100) sorted by relevance
1234
/PHP-7.2/ext/oci8/tests/ |
H A D | reflection1.phpt | 11 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.2/ext/reflection/tests/ |
H A D | bug52057.phpt | 8 $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 D | ReflectionMethod_getDocComment_property_list.phpt | 21 $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 D | bug66430.phpt | 18 $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 D | ReflectionExtension_bug66218.phpt | 2 ReflectionExtension::getFunctions() ##6218 zend_register_functions breaks reflection 5 if (!extension_loaded('reflection')) print 'skip missing reflection extension';
|
H A D | 011.phpt | 4 <?php extension_loaded('reflection') or die('skip'); ?> 7 $ext = new ReflectionExtension("reflection");
|
H A D | bug64007.phpt | 5 $reflection = new ReflectionClass('Generator'); 7 $generator = $reflection->newInstanceWithoutConstructor(); 13 $generator = $reflection->newInstance();
|
H A D | ReflectionClass_isIterateable_variation1.phpt | 12 $reflection = new ReflectionClass($obj); 13 var_dump($reflection->isIterateable());
|
H A D | ReflectionExtension_export_basic.phpt | 9 ReflectionExtension::export("reflection", true); 14 ReflectionExtension::export("reflection", false);
|
H A D | ReflectionClass_isArray.phpt | 9 $reflection = new ReflectionFunction('testReflectionIsArray'); 11 foreach ($reflection->getParameters() as $parameter) {
|
H A D | ReflectionClass_isIterateable_basic.phpt | 20 $reflection = new ReflectionClass($class); 21 var_dump($reflection->isIterateable());
|
/PHP-7.2/ext/snmp/tests/ |
H A D | reflection.phpt | 10 reflection::export(new reflectionmethod('snmp', '__construct')); 11 reflection::export(new reflectionmethod('snmp', 'close')); 12 reflection::export(new reflectionmethod('snmp', 'setSecurity')); 13 reflection::export(new reflectionmethod('snmp', 'get')); 14 reflection::export(new reflectionmethod('snmp', 'getnext')); 15 reflection::export(new reflectionmethod('snmp', 'walk')); 16 reflection::export(new reflectionmethod('snmp', 'set')); 17 reflection::export(new reflectionmethod('snmp', 'getErrno')); 18 reflection::export(new reflectionmethod('snmp', 'getError'));
|
/PHP-7.2/ext/openssl/tests/ |
H A D | bug75307.phpt | 2 Bug #75307 Wrong reflection for openssl_open function 6 if (!extension_loaded("reflection")) die("skip reflection not available");
|
/PHP-7.2/ext/mysqli/tests/ |
H A D | bug75434.phpt | 2 Bug #75434 Wrong reflection for mysqli_fetch_all function 6 if (!extension_loaded("reflection")) die("skip reflection extension not available");
|
/PHP-7.2/ext/dom/tests/ |
H A D | bug74416.phpt | 2 Bug #74416 Wrong reflection on DOMNode::cloneNode 6 if (!extension_loaded('reflection')) die('skip reflection extension not available');
|
/PHP-7.2/ext/gd/tests/ |
H A D | bug75437.phpt | 2 Bug #75437 Wrong reflection on imagewebp 5 if (!extension_loaded('reflection')) die('skip reflection not available');
|
/PHP-7.2/ext/reflection/ |
H A D | config.m4 | 2 dnl config.m4 for extension reflection 5 PHP_NEW_EXTENSION(reflection, php_reflection.c, no,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
|
/PHP-7.2/ext/session/tests/ |
H A D | bug74541.phpt | 2 Bug #74541 Wrong reflection on session_start() 6 if (!extension_loaded('reflection')) die("skip");
|
/PHP-7.2/ext/phar/tests/ |
H A D | bug74383.phpt | 2 Phar: bug #74383: Wrong reflection on Phar::running 4 <?php if (!extension_loaded("phar") || !extension_loaded('reflection')) die("skip"); ?>
|
H A D | bug74386.phpt | 2 Phar: bug #74386: Phar::__construct(): wrong number of parameters by reflection 4 <?php if (!extension_loaded("phar") || !extension_loaded('reflection')) die("skip"); ?>
|
/PHP-7.2/ext/zlib/tests/ |
H A D | bug75299.phpt | 2 Bug #75299 Wrong reflection on inflate_init and inflate_add 4 <?php if (!extension_loaded("zlib") || !extension_loaded('reflection')) die("skip"); ?>
|
/PHP-7.2/ext/com_dotnet/tests/ |
H A D | bug45280.phpt | 5 if (!extension_loaded("reflection")){ echo "skip, no reflection support present"; }
|
/PHP-7.2/Zend/tests/ |
H A D | bug50174.phpt | 4 <?php if (!extension_loaded('reflection') || !extension_loaded('spl')) print "skip SPL and reflecti…
|
/PHP-7.2/ext/standard/tests/general_functions/ |
H A D | ini_get_all.phpt | 8 <?php if (!extension_loaded("reflection")) die("skip"); ?> 20 var_dump(ini_get_all("reflection")); 23 var_dump(ini_get_all("reflection", false));
|
/PHP-7.2/sapi/cli/tests/ |
H A D | 004.phpt | 6 if (!extension_loaded("reflection")) { 7 die("skip reflection extension required");
|
Completed in 22 milliseconds
1234