- Output for 7.1.25 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.30, 8.0.0 - 8.0.22, 8.1.0 - 8.1.9
- hostname=https://booking.example.com mainSite=https://www.example.com
<?php
file_put_contents('/tmp/config.php',"<?php
return [
'hostname' => 'https://booking.example.com',
'mainSite' => 'https://www.example.com',
];");
foreach((require '/tmp/config.php') as $key => $value) {
echo "$key=$value\n";
}