• PHP Video Tutorials

PHP - Function Strtoupper



Syntax

string strtoupper ( string $string )

Definition and Usage

It used to make a string upper case

Return Values

It returns the string upper case

Parameters

Sr.No Parameters & Description
1

string

It specifies input string

Example

Try out the following example

<?php
   echo strtoupper("tutorials point.");
?>

This will produce following result −

TUTORIALS POINT.
php_function_reference.htm
Advertisements