Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 381 Bytes

str_case_pascal.md

File metadata and controls

31 lines (19 loc) · 381 Bytes

Description

Converts a string to pascal case

str_case_pascal(string $string): string

Parameters

string

The input string

Returns

Returns the input string in pascal case.

Examples

Example # 1 Example uses of str_case_pascal()

echo str_case_pascal('Some random sentence');

The above example will output:

SomeRandomSentence