HOME


Mini Shell 1.0
DIR: /home/otwalrll/satojafurnitures.com/wp-content/plugins/meta-box/inc/helpers/
Upload File :
Current File : //home/otwalrll/satojafurnitures.com/wp-content/plugins/meta-box/inc/helpers/string.php
<?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;
	}
}