14 lines
240 B
PHP
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");
|
|
}
|
|
|
|
?>
|