1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
  Fix Windows test for openssl-3.5 upgrade (#19384)
This commit is contained in:
Ilija Tovilo
2025-10-21 00:40:27 +02:00

View File

@@ -21,7 +21,7 @@ ob_end_clean();
preg_match(",Openssl default config [^ ]* (.*),", $info, $m);
if (isset($m[1])) {
var_dump(str_replace('/', '\\', strtolower($m[1])));
var_dump(str_replace('\\/', '\\', strtolower($m[1])));
} else {
echo $info;
}