mirror of
https://github.com/php/frankenphp.git
synced 2026-03-24 09:02:11 +01:00
11 lines
237 B
PHP
11 lines
237 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../_executor.php';
|
|
|
|
return function () use (&$rememberedKey) {
|
|
$keys = $_GET['keys'];
|
|
|
|
// echoes ENV1=value1,ENV2=value2
|
|
echo join(',', array_map(fn($key) => "$key=" . $_ENV[$key], $keys));
|
|
};
|