Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 393 Bytes

str_case_sentence.md

File metadata and controls

31 lines (19 loc) · 393 Bytes

Description

Converts a string to sentence case

str_case_sentence(string $string): string

Parameters

string

The input string

Returns

Returns the input string in sentence case.

Examples

Example # 1 Example uses of str_case_sentence()

echo str_case_sentence('Some random sentence');

The above example will output:

Some random sentence