PHP Class Altax\Util\Str

Show file Open project: kohkimakimoto/altax Class Usage Examples

Public Methods

Method Description
camel ( string $value ) : string Convert a value to camel case.
snake ( string $value, string $delimiter = '_' ) : string Convert a string to snake case.
studly ( string $value ) : string Convert a value to studly caps case.

Method Details

camel() public static method

Convert a value to camel case.
public static camel ( string $value ) : string
$value string
return string

snake() public static method

Convert a string to snake case.
public static snake ( string $value, string $delimiter = '_' ) : string
$value string
$delimiter string
return string

studly() public static method

Convert a value to studly caps case.
public static studly ( string $value ) : string
$value string
return string