summaryrefslogtreecommitdiff
path: root/php/replace.php
blob: 70fdd2546d72e1bfc4ca6768fce2ae8c503968d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

function replace(string $templatePath, array $replacements = []): string {
    $html = file_get_contents($templatePath);

    foreach ($replacements as $placeholder => $replacementValue) {
        $html = str_replace($placeholder, $replacementValue, $html);
    }

    return $html;
}

?>