• PHP Video Tutorials

PHP - Function Strtolower



Syntax

strstr(string,search,before_search)

Definition and Usage

It used to make a string lower case

Return Values

It returns the string lower case

Parameters

Sr.No Parameters & Description
1

string

It specifies the string to convert

Example

Try out the following example

<?php
   echo strtolower("TUTORIALS POINT.");
?>

This will produce following result −

tutorials point.
php_function_reference.htm
Advertisements