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 | |
/** | |
* Return the coefficient of two items based on Jaccard index | |
* http://en.wikipedia.org/wiki/Jaccard_index | |
* | |
* Example: | |
* | |
* $tags1 = "code, php, jaccard, test, items"; | |
* $tags2 = "test, code"; |