-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c7b7a9
commit b3159e9
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
#include "php.h" | ||
#include "ext/standard/info.h" | ||
#include "php_phpy.h" | ||
#include <patchlevel.h> | ||
|
||
/* {{{ PHP_RINIT_FUNCTION */ | ||
PHP_RINIT_FUNCTION(phpy) | ||
|
@@ -31,7 +32,8 @@ PHP_MINFO_FUNCTION(phpy) | |
php_info_print_table_row(2, "Copyright", "上海识沃网络科技有限公司"); | ||
php_info_print_table_row(2, "Email", "[email protected]"); | ||
php_info_print_table_row(2, "Website", "https://www.swoole.com/"); | ||
php_info_print_table_row(2, "Version", PHP_PHPY_VERSION); | ||
php_info_print_table_row(2, "Extension Version", PHP_PHPY_VERSION); | ||
php_info_print_table_row(2, "Python Version", PY_VERSION); | ||
php_info_print_table_end(); | ||
} | ||
/* }}} */ | ||
|