JavaScript Editor Javascript debugger      Website design 


apd_get_active_symbols

Get an array of the current variables names in the local scope (PECL apd:0.2)
array apd_get_active_symbols ( )

Returns the names of all the variables defined in the active scope, (not their values).

Return Values

A multidimensional array with all the variables.

Examples

Example 226. apd_get_active_symbols() example

<?php
apd_echo
(apd_get_active_symbols());
?>