这篇文章主要为大家详细介绍了PHP输出当前进程所有变量/常量/模块/函数/类的入门实例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
1. get_defined_vars (PHP 4 >= 4.0.4, PHP 5) — 获取由所有已定义变量所组成的数组代码如下:
<?php
/* 四海网 www.q1010.com */
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) — 获取所有已经定义的函数
array get_defined_functions ( void ) //void 表示为空,不需要任何参数
<?php
/* 四海网 www.q1010.com */
echo '<pre>';
function foo()
{
echo "This is my function foo";
}
$arr = get_defined_functions();
print_r($arr);
?>
代码如下:
<?php
/* 四海网 www.q1010.com */
echo '<pre>';
print_r(get_loaded_extensions());
?>
代码如下:
<?php
/* 四海网 www.q1010.com */
echo '<pre>';
print_r(get_extension_funcs("gd"));
print_r(get_extension_funcs("xml"));
?>
代码如下:
<?php
/* 四海网 www.q1010.com */
echo '<pre>';
define("MY_CONSTANT", 1);
print_r(get_defined_constants(true));
?>
代码如下:
<?php
/* 四海网 www.q1010.com */
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());
?>
本文来自:http://www.q1010.com/173/14639-0.html
注:关于PHP输出当前进程所有变量/常量/模块/函数/类的入门实例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。