w3resource

PHP: ucfirst() function

Description

The ucfirst() function is used to convert the first character of a string to uppercase.

Version:

(PHP 4 and above)

Syntax:

ucfirst(string_name)

Parameter:

Name Description Required /
Optional
Type
string_name The input string. Required String

Return value:

Returns the modified string.

Value Type: String.

Pictorial Presentation

string_ucfirst

Example:

<?php
$string_name='welcome to w3resource.com';
$string_name=ucfirst($string_name);
echo $string_name;
?>

Output :

Welcome to w3resource.com

View the example in the browser

See also

PHP Function Reference

Previous: trim
Next: ucwords



Follow us on Facebook and Twitter for latest update.