how to ignore case sensitive in php code example
Example: strcasecmp php
<?php
echo strcasecmp("Hello world!","HELLO WoRLD!");
?>
<p>If this function returns 0, the two strings are equal.</p>
<?php
echo strcasecmp("Hello world!","HELLO WoRLD!");
?>
<p>If this function returns 0, the two strings are equal.</p>