<?php /** * String helper functions. */ class RWMB_Helpers_String { public static function title_case( string $text ) : string { $text = str_replace( [ '-', '_' ], ' ', $text ); $text = ucwords( $text ); $text = str_replace( ' ', '_', $text ); return $text; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
array.php | File | 172 B | 0644 |
|
field.php | File | 1.12 KB | 0644 |
|
string.php | File | 275 B | 0644 |
|
value.php | File | 672 B | 0644 |
|