Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Find the first occurrence of a string
Alias strchr
<?php strstr(string $haystack, string $needle, bool $before_needle = false): string|false
<?php                     case 'openssl_version':


                        $opensslVersion = strstr(trim(strstr(OPENSSL_VERSION_TEXT, ' ')), ' ', true);

                        $opensslVersion = $opensslVersion ?: OPENSSL_VERSION_TEXT;



                        $text = "The OpenSSL library ({$opensslVersion}) used by PHP does not support TLSv1.2 or TLSv1.1.".PHP_EOL;