%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/thread-self/root/var/www/pn/wp-content/plugins/meta-box/inc/helpers/
Upload File :
Create Path :
Current File : //proc/thread-self/root/var/www/pn/wp-content/plugins/meta-box/inc/helpers/string.php

<?php
/**
 * String helper functions.
 *
 * @package Meta Box
 */

/**
 * String helper class.
 *
 * @package Meta Box
 */
class RWMB_Helpers_String {
	/**
	 * Convert text to Title_Case.
	 *
	 * @param  string $text Input text.
	 * @return string
	 */
	public static function title_case( $text ) {
		$text = str_replace( array( '-', '_' ), ' ', $text );
		$text = ucwords( $text );
		$text = str_replace( ' ', '_', $text );

		return $text;
	}
}

Zerion Mini Shell 1.0