Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 8.5.0alpha3

- Core:
. Added PHP_BUILD_PROVIDER constant. (timwolla)

- Sockets:
. socket_set_option for multicast context throws a ValueError
when the socket family is not of AF_INET/AF_INET6 family. (David Carlier)
Expand Down
1 change: 1 addition & 0 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ PHP 8.5 UPGRADE NOTES

- Core:
. PHP_BUILD_DATE.
. PHP_BUILD_PROVIDER.

- Curl:
. CURLINFO_USED_PROXY.
Expand Down
8 changes: 8 additions & 0 deletions main/main.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@
*/
const PHP_BUILD_DATE = UNKNOWN;

#ifdef PHP_BUILD_PROVIDER
/**
* @var string
* @cvalue PHP_BUILD_PROVIDER
*/
const PHP_BUILD_PROVIDER = UNKNOWN;
#endif

/**
* @var bool
* @cvalue PHP_ZTS
Expand Down
5 changes: 4 additions & 1 deletion main/main_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading