phpdbg_notice("variableinfo","unreachable=\"%.*s\"","Cannot show information about superglobal variable %.*s",ZSTR_LEN(auto_global->name),ZSTR_VAL(auto_global->name));
@ -204,9 +206,9 @@ static int phpdbg_print_symbols(zend_bool show_globals) {
if(ops->function_name){
if(ops->scope){
phpdbg_notice("variableinfo","method=\"%s::%s\" num=\"%d\"","Variables in %s::%s() (%d)",ops->scope->name,ops->function_name,zend_hash_num_elements(&vars));
phpdbg_notice("variableinfo","method=\"%s::%s\" num=\"%d\"","Variables in %s::%s() (%d)",ops->scope->name->val,ops->function_name->val,zend_hash_num_elements(&vars));
}else{
phpdbg_notice("variableinfo","function=\"%s\" num=\"%d\"","Variables in %s() (%d)",ops->function_name,zend_hash_num_elements(&vars));
phpdbg_notice("variableinfo","function=\"%s\" num=\"%d\"","Variables in %s() (%d)",ZSTR_VAL(ops->function_name),zend_hash_num_elements(&vars));
}
}else{
if(ops->filename){
@ -221,8 +223,9 @@ static int phpdbg_print_symbols(zend_bool show_globals) {