dnsservice/ansible/assets/api/lib/util.php

14 lines
240 B
PHP
Raw Normal View History

2024-08-05 20:04:05 +00:00
<?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");
}
?>