<!DOCTYPE html>
<html>
<body>

<?php
echo strncasecmp("China","China",6);
echo "<br>";
echo strncasecmp("China","CHINA",6);
?>
  
</body>
</html>