10000 Add ext/uri skeleton along with uriparser by kocsismate · Pull Request #18658 · php/php-src · GitHub
[go: up one dir, main page]

Skip to content

Add ext/uri skeleton along with uriparser #18658

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
May 27, 2025
Prev Previous commit
Next Next commit
Review fixes
  • Loading branch information
kocsismate committed May 25, 2025
commit 61c42abdedb46fa80394d55344470b338714b927
5 changes: 2 additions & 3 deletions ext/uri/php_uri.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@
*/

#ifdef HAVE_CONFIG_H
# include "config.h"
# include <config.h>
#endif

#include "php.h"
#include "Zend/zend_interfaces.h"
#include "Zend/zend_exceptions.h"
#include "Zend/zend_attributes.h"
#include "main/php_ini.h"
#include "ext/standard/info.h"

#include "php_uri.h"
#include "php_uri_arginfo.h"
Expand Down Expand Up @@ -52,13 +53,11 @@ 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 version", URIPARSER_VERSION);
php_info_print_table_end();
}

static PHP_MSHUTDOWN_FUNCTION(uri)
{
UNREGISTER_INI_ENTRIES();

return SUCCESS;
}
Expand Down
0