get_defined_varsはもうすぐです (引用):
環境変数、サーバー変数、ユーザー定義変数など、すべての定義済み変数のリストを含む多次元配列を返します
さて、私のデバッグ タスクには、ユーザー定義のものだけが必要です。php組み込みや補足機能はありますか?
編集:わかりました、正確に何を求めていたのかを明確にしませんでした。ここに少し例を示します:
<?php
/*
this script is included, and I don't have info
about how many scripts are 'above' and 'bellow' this*/
//I'm at line 133
$user_defined_vars = get_user_defined_vars();
//$user_defined_vars should now be array of names of user-defined variables
//what is the definition of get_user_defined_vars()?
?>