Latest web development tutorials
 

PHP ucfirst() Function

< PHP String Reference

Example

Convert the first character of "hello" to uppercase:

<?php
echo ucfirst("hello world!");
?>
Run example »

Definition and Usage

The ucfirst() function converts the first character of a string to uppercase.

Related functions:


Syntax

ucfirst(string)

Parameter Description
string Required. Specifies the string to convert

Technical Details

Return Value: Returns the converted string
PHP Version: 4+

< PHP String Reference