From b29c52ff47c4e1f395bbc534ac9c0e7ee8877d6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 5 Sep 2025 11:00:22 +0200 Subject: [PATCH] uri: Show the uriparser runtime version in PHPInfo --- ext/uri/php_uri.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ext/uri/php_uri.c b/ext/uri/php_uri.c index 0308c8625e0a8..613ca1386bc33 100644 --- a/ext/uri/php_uri.c +++ b/ext/uri/php_uri.c @@ -1061,8 +1061,9 @@ static PHP_MINIT_FUNCTION(uri) static PHP_MINFO_FUNCTION(uri) { php_info_print_table_start(); - php_info_print_table_row(2, "uri support", "active"); - php_info_print_table_row(2, "uriparser library version", URI_VER_ANSI); + php_info_print_table_row(2, "URI support", "active"); + php_info_print_table_row(2, "uriparser compiled version", URI_VER_ANSI); + php_info_print_table_row(2, "uriparser loaded version", uriBaseRuntimeVersionA()); php_info_print_table_end(); }