Affected page
https://www.php.net/manual/en/context.ssl.php
Current issue
According to the PHP changelog, this option was introduced in PHP 5.3.6 to disable the TLS SessionTicket extension.
Changelog reference:
https://www.php.net/ChangeLog-5.php#Version%205.3.6
Added a "no_ticket" SSL context option to disable the SessionTicket TLS extension. #53447.
This option maps to the OpenSSL flag SSL_OP_NO_TICKET and disables the use of TLS Session Tickets for session resumption.
Suggested improvement
no_ticket (bool)
Disable TLS Session Tickets. When enabled, the TLS SessionTicket extension is disabled and session tickets will not be used for session resumption. Available since PHP 5.3.6.
Additional context (optional)
No response