1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
Files
Gabriel Caruso 4aabfe911e Revert "Update versions for PHP 8.0.21"
This reverts commit 6eedacdf15.
2022-07-06 12:06:48 +02:00

21 lines
351 B
PHP

--TEST--
GH-7896 (Environment vars may be mangled on Windows)
--SKIPIF--
<?php
if (PHP_OS_FAMILY !== "Windows") die("skip for Windows only");
?>
--ENV--
FÖÖ=GüИter传
--FILE--
<?php
var_dump(
$_SERVER['FÖÖ'],
$_ENV['FÖÖ'],
getenv('FÖÖ')
);
?>
--EXPECT--
string(11) "GüИter传"
string(11) "GüИter传"
string(11) "GüИter传"