<!DOCTYPE html>
<html>
<body>
<?php
echo strncmp("Hello","Hello",6);
echo "<br>";
echo strncmp("Hello","hELLo",6);
?>
</body>
</html>