Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以返回两个字符串之间不同的字符数?
就我而言,我想进行检查以量化用户的草稿与数据库版本相比有多少变化。有了这些信息,系统可以决定是否需要自动保存草稿。
例如:
echo string_diff("Hello world", "Hi World");
这应该输出“5”,表示字符“ello”和“W”是不同的。
这可以用PHP吗?用 mySQL 怎么样?
在 PHP 方面,您的选择是
在 mysql 上,你可以使用这个用户定义的函数来计算 levenshtein 距离