Merge pull request #44 from Hywan/option_zend_version

Add Zend version and copyright (oops, I merged the last PR too early)
This commit is contained in:
Bob Weinand 2013-12-18 07:20:11 -08:00
commit d850deca94

View File

@ -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;
}