Move includes to their own folder, config.php will otherwise be included and cleans up nicely
11 lines
173 B
PHP
11 lines
173 B
PHP
<?php
|
|
|
|
function path(...$segments): string
|
|
{
|
|
return implode(DIRECTORY_SEPARATOR, $segments);
|
|
}
|
|
|
|
function line(string $line): void
|
|
{
|
|
echo $line . PHP_EOL;
|
|
} |