php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容

源代码在线查看: function.similar-text.html

软件大小: 3633 K
上传用户: fengkuangyidao
关键词: php PHP 文档 实际应用
下载地址: 免注册下载 普通下载 VIP

相关代码

												 				  Calculate the similarity between two strings				  				 				 				 sha1				 soundex				 String Functions				 PHP Manual								 				  similar_text				  (PHP 4, PHP 5)similar_text — Calculate the similarity between two strings								 				 				 				  Description				  				   int similar_text				    ( string $first				   , string $second				   [, float &$percent				  ] )								  				   This calculates the similarity between two strings as described in Oliver				   [1993]. Note that this implementation does not use a stack as in Oliver's				   pseudo code, but recursive calls which may or may not speed up the whole				   process. Note also that the complexity of this algorithm is O(N**3) where				   N is the length of the longest string.				  				 												 				  Parameters				  				   								    								     first												     								      				       The first string.				      				     								    								    								     second												     								      				       The second string.				      				     								    								    								     percent												     								      				       By passing a reference as third argument,				       similar_text() will calculate the similarity in				       percent for you. 				      				     								    								   								  				 												 				  Return Values				  				   Returns the number of matching chars in both strings.				  				 												 				  See Also				  				   				    levenshtein()				    soundex()				   				  				 																 sha1				 soundex				 String Functions				 PHP Manual											

相关资源