mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-09-26 19:41:13 +08: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));
|
|
};
|