This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
another test gist. | |
maybe i'll have better luck this time. | |
moar lines please. | |
poop. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// returns the position of the first differing character between | |
// $left and $right, or -1 if either is empty | |
function strcmppos($left, $right) { | |
if (empty($left) || empty($right)) { | |
return -1; | |
} | |
$i = 0; |