當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ReflectionExtension::export方法代碼示例

本文整理匯總了PHP中ReflectionExtension::export方法的典型用法代碼示例。如果您正苦於以下問題:PHP ReflectionExtension::export方法的具體用法?PHP ReflectionExtension::export怎麽用?PHP ReflectionExtension::export使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ReflectionExtension的用法示例。


在下文中一共展示了ReflectionExtension::export方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: export

 /**
  * Exports a reflection object.
  *
  * Returns the output if TRUE is specified for return, printing it otherwise.
  * This is purely a wrapper method, which calls the corresponding method of
  * the parent class.
  * @param ReflectionExtension|string $extension
  *        ReflectionExtension object or name of the extension
  * @param boolean $return
  *        Whether to return (TRUE) or print (FALSE) the output
  * @return mixed
  */
 public static function export($extension, $return = false)
 {
     return parent::export($extension, $return);
 }
開發者ID:naderman,項目名稱:pflow,代碼行數:16,代碼來源:extension.php

示例2: Func

<?php

class Foo
{
    public $prop;
    function Func($name)
    {
        echo "Hello {$name}";
    }
}
ReflectionClass::export('Foo');
//output: Class [ class Foo ] { @@ /home/cg/root/main.php 3-10 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [1] { Property [ public $prop ] } - Methods [1] { Method [ public method Func ] { @@ /home/cg/root/main.php 7 - 9 - Parameters [1] { Parameter #0 [ $name ] } } } }
ReflectionObject::export(new Foo());
// output: Object of class [ class Foo ] { @@ /home/cg/root/main.php 3-10 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [1] { Property [ public $prop ] } - Dynamic properties [0] { } - Methods [1] { Method [ public method Func ] { @@ /home/cg/root/main.php 7 - 9 - Parameters [1] { Parameter #0 [ $name ] } } } }
ReflectionMethod::export('Foo', 'func');
// output:  Method [ public method Func ] { @@ /home/cg/root/main.php 7 - 9 - Parameters [1] { Parameter #0 [ $name ] } }
ReflectionProperty::export('Foo', 'prop');
//output: Property [ public $prop ]
ReflectionExtension::export('standard');
//output: Extension [ extension #15 standard version 5.5.18 ] ...
開發者ID:KB-WEB-DEVELOPMENT,項目名稱:Kami_Barut_PHP_projects,代碼行數:20,代碼來源:Reflection+API+example.php

示例3: header

<?php

header('Content-type: text/plain; charset=utf-8');
ReflectionExtension::export('yb');
開發者ID:lifang218c,項目名稱:yb,代碼行數:4,代碼來源:index.php

示例4: ob_start

<?php

ob_start();
ReflectionExtension::export("reflection", true);
$test = ob_get_clean();
var_dump(empty($test));
unset($test);
ob_start();
ReflectionExtension::export("reflection", false);
$test = ob_get_clean();
var_dump(empty($test));
?>
==DONE==
開發者ID:badlamer,項目名稱:hhvm,代碼行數:13,代碼來源:ReflectionExtension_export_basic.php


注:本文中的ReflectionExtension::export方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。