We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3baccdd commit 5625b99Copy full SHA for 5625b99
redis.c
@@ -675,6 +675,11 @@ PHP_MINFO_FUNCTION(redis)
675
php_info_print_table_start();
676
php_info_print_table_header(2, "Redis Support", "enabled");
677
php_info_print_table_row(2, "Redis Version", PHP_REDIS_VERSION);
678
+#ifdef HAVE_REDIS_IGBINARY
679
+ php_info_print_table_row(2, "Available serializers", "php, igbinary");
680
+#else
681
+ php_info_print_table_row(2, "Available serializers", "php");
682
+#endif
683
php_info_print_table_end();
684
}
685
0 commit comments