php strncasecmp() function


  Translation results:

String comparison function; comparison function; string comparison

php strncasecmp() functionsyntax

Function:Compare the first n characters of the string, case-insensitive

Syntax: strncasecmp(string1,string2,length)

Parameters:

ParametersDescription
string1Required. Specifies the first string to compare.
string2Required. Specifies the second string to be compared.
lengthRequired. Specifies the number of characters per string used for comparison.

Description: strncasecmp() function compares two strings. strncasecmp() is binary-safe and case-insensitive. If the two strings are equal, 0 is output. If string1 is greater than string2, the output value is greater than 0. If string1 is less than string2, the output value is less than 0.

php strncasecmp() functionexample

<?php
echo strncasecmp("Hello","hello",6);
?>

Run instance»

Click the "Run instance" button to view the online instance

Output:

0

Home

Videos

Q&A