Commit 1cf6da62d82 for php.net

commit 1cf6da62d82bd7fa7a75c34e921a34b9a863ea18
Author: Weilin Du <weilindu@php.net>
Date:   Fri Jun 26 12:19:01 2026 +0800

    ext/standard: Fix #undef directive after cache_request_parse_body_options (#22457)

    `CACHE_OPTION` should be typo,
    and it should instead be `CHECK_OPTION`.

diff --git a/ext/standard/http.c b/ext/standard/http.c
index 99509e7ceb0..d65e7a8acaa 100644
--- a/ext/standard/http.c
+++ b/ext/standard/http.c
@@ -317,7 +317,7 @@ static zend_result cache_request_parse_body_options(HashTable *options)
 		return FAILURE;
 	} ZEND_HASH_FOREACH_END();

-#undef CACHE_OPTION
+#undef CHECK_OPTION

 	return SUCCESS;
 }