diff options
author | Xinchen Hui <laruence@php.net> | 2015-07-22 19:13:26 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-07-22 19:13:26 +0800 |
commit | f56b89b0affebc916ec3c8f3275d31933dc76841 (patch) | |
tree | a67a1170b7d380a01d237ab8d022eaf1f447f1e2 /sapi/phpdbg/phpdbg_print.c | |
parent | c274e2397d27e5fb7d212b7b68b85a2bf82ceb3a (diff) | |
download | php-git-f56b89b0affebc916ec3c8f3275d31933dc76841.tar.gz |
Fixed opcodes printing.
-p"function"
-p"class::"
-p"class::method"
Diffstat (limited to 'sapi/phpdbg/phpdbg_print.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_print.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sapi/phpdbg/phpdbg_print.c b/sapi/phpdbg/phpdbg_print.c index 4a00189b46..5e485b3611 100644 --- a/sapi/phpdbg/phpdbg_print.c +++ b/sapi/phpdbg/phpdbg_print.c @@ -377,8 +377,6 @@ void phpdbg_print_opcodes_class(const char *class) { PHPDBG_API void phpdbg_print_opcodes(char *function) { - char *method_name = strtok(function, ":"); - if (function == NULL) { phpdbg_print_opcodes_main(); } else if (function[0] == '*' && function[1] == 0) { @@ -402,11 +400,14 @@ PHPDBG_API void phpdbg_print_opcodes(char *function) phpdbg_print_opcodes_ce(ce); } } ZEND_HASH_FOREACH_END(); - } else if (method_name == NULL) { + } else if (strstr(function, "::") == NULL) { phpdbg_print_opcodes_function(function, strlen(function)); - } else if ((method_name = strtok(NULL, ":")) == NULL) { - phpdbg_print_opcodes_class(function); } else { - phpdbg_print_opcodes_method(function, method_name); + char *method_name, *class_name = strtok(function, "::"); + if ((method_name = strtok(NULL, "::")) == NULL) { + phpdbg_print_opcodes_class(class_name); + } else { + phpdbg_print_opcodes_method(class_name, method_name); + } } } |