diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-12-18 16:13:14 +0100 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-12-18 16:15:24 +0100 |
commit | 1bc35a70d552207ffad7f869db40e127af84121b (patch) | |
tree | 0f282ada402a3e15c841c5be27173c6b1b002d97 /phpdbg.c | |
parent | abf68be7a46c53ecc40c2388c7913bf9d2a7da9d (diff) | |
download | php-git-1bc35a70d552207ffad7f869db40e127af84121b.tar.gz |
Add Zend version and copyright.
Diffstat (limited to 'phpdbg.c')
-rw-r--r-- | phpdbg.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1001,14 +1001,19 @@ phpdbg_main: #endif case 'V': { + sapi_startup(phpdbg); + phpdbg->startup(phpdbg); printf( - "phpdbg %s (built: %s %s)\nCopyright (c) 2013 %s\nPHP %s, Copyright (c) 1997-2013 The PHP Group\n", + "phpdbg %s (built: %s %s)\nCopyright (c) 2013 %s\nPHP %s, Copyright (c) 1997-2013 The PHP Group\n%s", PHPDBG_VERSION, __DATE__, __TIME__, PHPDBG_AUTHORS, - PHP_VERSION + PHP_VERSION, + get_zend_version() ); + sapi_deactivate(TSRMLS_C); + sapi_shutdown(); return 0; } break; } |