dnsservice/ansible/assets/api/lib/util.php
2024-08-05 15:04:05 -05:00

14 lines
240 B
PHP

<?php
function trim_prefix($str, $prefix) {
if (substr($str, 0, strlen($prefix)) == $prefix) {
$str = substr($str, strlen($prefix));
}
return $str;
}
function to_title(string $str):string {
return ucwords($str," -\n\t");
}
?>