rosavox/source/helpers/string.php

19 lines
274 B
PHP
Raw Normal View History

2025-05-22 06:26:16 +00:00
<?php
namespace rosavox\helpers\string_;
/**
*/
function coin(string $template, array $arguments) : string
{
$result = $template;
foreach ($arguments as $key => $value)
{
$result = \str_replace(\sprintf('{{%s}}', $key), $value, $result);
}
return $result;
}
?>