反射
在线手册:中文  英文

ReflectionExtension 类

(PHP 5)

简介

ReflectionExtension 报告了一个扩展(extension)的有关信息。

类摘要

ReflectionExtension implements Reflector {
/* 属性 */
public $name ;
/* 方法 */
final private void __clone ( void )
public __construct ( string $name )
public static string export ( string $name [, string $return = false ] )
public array getClasses ( void )
public array getClassNames ( void )
public array getConstants ( void )
public array getDependencies ( void )
public array getFunctions ( void )
public array getINIEntries ( void )
public string getName ( void )
public string getVersion ( void )
public void info ( void )
public void isPersistent ( void )
public void isTemporary ( void )
public string __toString ( void )
}

属性

name

扩展的名称,和 ReflectionExtension::getName() 方法所返回的一样。

Table of Contents


反射
在线手册:中文  英文

用户评论:

Lubaev.K (2013-06-20 15:01:51)

<?php
// The demonstration for the class "ReflectionExtension".

function REData(ReflectionExtension $re$return=false) {

    
defined('UNDEFINED') || define('UNDEFINED','%undefined%');
    
$_data = [];

    
$_data['getName:'] = $re->getName() ?: UNDEFINED;
    
$_data['getVersion:'] = $re->getVersion() ?: UNDEFINED;
    
$_data['info:'] = $re->info() ?: UNDEFINED;
    
$_data['getClassName:'] = PHP_EOL.implode(", ",$re->getClassNames()) ?: UNDEFINED;     
    foreach (
$re->getConstants() as $key => $value$_data['getConstants:'] .= "\n{$key}:={$value}";
    
$_data['getDependencies:'] = $re->getDependencies() ?: UNDEFINED;
    
$_data['getFunctions:'] = PHP_EOL.implode(", ",array_keys($re->getFunctions())) ?: UNDEFINED;
    
$_data['getINIEntries:'] = $re->getINIEntries() ?: UNDEFINED;
    
$_data['isPersistent:'] = $re->isPersistent() ?: UNDEFINED;
    
$_data['isTemporary:'] = $re->isTemporary() ?: UNDEFINED;

    return 
print_r($_data$return);
}

REData( new ReflectionExtension'Reflection' ) );
REData( new ReflectionExtension'zlib' ) );

// Reflection
// Reflection => enabled
// Version => $Id: 60f1e547a6dd00239162151e701566debdcee660 $
/*
Array
(
    [getName:] => Reflection
    [getVersion:] => $Id: 60f1e547a6dd00239162151e701566debdcee660 $
    [info:] => %undefined%
    [getClassName:] =>
ReflectionException, Reflection, Reflector, ReflectionFunctionAbstract, Reflecti
onFunction, ReflectionParameter, ReflectionMethod, ReflectionClass, ReflectionOb
ject, ReflectionProperty, ReflectionExtension, ReflectionZendExtension
    [getDependencies:] => %undefined%
    [getFunctions:] =>

    [getINIEntries:] => %undefined%
    [isPersistent:] => 1
    [isTemporary:] => %undefined%
)
*/
// zlib
// ZLib Support => enabled
// Stream Wrapper => compress.zlib://
// Stream Filter => zlib.inflate, zlib.deflate
// Compiled Version => 1.2.7
// Linked Version => 1.2.7
// Directive => Local Value => Master Value
// zlib.output_compression => Off => Off
// zlib.output_compression_level => -1 => -1
// zlib.output_handler => no value => no value
/*
Array
(
    [getName:] => zlib
    [getVersion:] => 2.0
    [info:] => %undefined%
    [getClassName:] =>

    [getConstants:] =>
FORCE_GZIP:=31
FORCE_DEFLATE:=15
ZLIB_ENCODING_RAW:=-15
ZLIB_ENCODING_GZIP:=31
ZLIB_ENCODING_DEFLATE:=15
    [getDependencies:] => %undefined%
    [getFunctions:] =>
readgzfile, gzrewind, gzclose, gzeof, gzgetc, gzgets, gzgetss, gzread, gzopen, g
zpassthru, gzseek, gztell, gzwrite, gzputs, gzfile, gzcompress, gzuncompress, gz
deflate, gzinflate, gzencode, gzdecode, zlib_encode, zlib_decode, zlib_get_codin
g_type, ob_gzhandler
    [getINIEntries:] => Array
        (
            [zlib.output_compression] =>
            [zlib.output_compression_level] => -1
            [zlib.output_handler] =>
        )

    [isPersistent:] => 1
    [isTemporary:] => %undefined%
)
*/

易百教程