x
 
<!DOCTYPE html>
<html>
<body>
<?php
echo strncmp("China","China",6);
echo "<br>";
echo strncmp("China","CHINA",6);
?>
  
</body>
</html>