我正在尝试使用这些字符串之间最常见的单词从多个字符串中创建一个新字符串。例如:
$string[0] = 'Apple iPhone 4S 16GB Locked to Orange';
$string[1] = 'iPhone 4S 16GB boxed new';
$string[2] = 'iPhone 4S 16GB unlocked brand new';
$string[3] = 'Apple iPhone 16GB 4S Special Offer';
$string[4] = 'Apple iPhone 4S Sim Free';
## The new string should be:
$new_string = 'Apple iPhone 4S 16GB';
可能有数百个原始字符串,或者只有 2 个......
我不知道从哪里开始,任何帮助将不胜感激。