PHP輸出當前進程全部變量 / 常量 / 模塊 / 函數 / 類

1. get_defined_vars  (PHP 4 >= 4.0.4, PHP 5) — 獲取由全部已定義變量所組成的數組php

 

array get_defined_vars ( void )數組

 

此函數返回一個包含全部已定義變量列表的多維數組,這些變量包括環境變量、服務器變量和用戶定義的變量。服務器

 

<?php
echo '<pre>';

$b = array(1,1,2,3,5,8);

$arr = get_defined_vars();

// 打印 $b
print_r($arr["b"]);

// 打印全部服務器變量
print_r($arr["_SERVER"]);

// 打印變量數組的全部可用鍵值
print_r(array_keys(get_defined_vars()));
?>
 

2. get_defined_functions (PHP 4 >= 4.0.4, PHP 5) — 獲取全部已經定義的函數app

 

array get_defined_functions ( void ) //void 表示爲空,不須要任何參數函數

 

<?php
echo '<pre>';

function foo()
{
    echo "This is my function foo";
}
$arr = get_defined_functions();
print_r($arr);

?>

 

3. get_loaded_extensions (PHP 4, PHP 5) — 獲取全部可用的模塊ui

 

<?php
echo '<pre>';

print_r(get_loaded_extensions());
?>
 

4. get_extension_funcs (PHP 4, PHP 5) — 獲取指定模塊的可用函數spa

 

array get_extension_funcs ( string $module_name ) 該函數返回指定模塊全部可用的函數。傳入的參數(模塊名稱)必須是小寫code

 

<?php
echo '<pre>';

print_r(get_extension_funcs("gd"));
print_r(get_extension_funcs("xml"));
?>
 

5. get_defined_constants (PHP 4 >= 4.1.0, PHP 5) —  獲取關聯數組的名字全部的常量和他們的價值xml

 

array get_defined_constants ([ bool $categorize = false ] )three

 

<?php
echo '<pre>';

define("MY_CONSTANT", 1);
print_r(get_defined_constants(true));
?>
 

6. get_declared_classes (PHP 4, PHP 5) —  獲取由已定義類的名字所組成的數組

 

array get_declared_classes ( void )

 

<?php
echo '<pre>';

//define classone
class classone { }

//define classtwo
class classtwo { }

//This will show X classes (built-ins, extensions etc) with
//classone and classtwo as the last two elements

print_r(get_declared_classes());

//define classthree
class classthree { }

//...and four
class classfour { }

//Shows the same result as before with class three and four appended
print_r(get_declared_classes());
?>
 
相關文章
相關標籤/搜索