How to use strcasecmp in PHP

In this article I will explain how strcasecmp function used in PHP.
  • 1417

strcasecmp() Function

This function compares two strings

and give output:

  1. 0 - if the two strings are equal
  2. <0 - if string1 is less than string2
  3. >0 - if string1 is greater than string2

Note- It is a case-insensitive.

Syntax
 

strcasecmp(string1,string2)

 

 Parameter  Description
 string1  first string to compare
 string2  second string to compare

Example

<html>
<body>
<?php
echo strcasecmp("Hello Sharad!","HELLO SHARD!");
?>
</html>
</body>

 

Output

strcasecmp-php.jpg

You may also want to read these related articles Click here

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.