Forum Moderators: coopster
I have thousands products and would like to do some price komparsion between the same products
Looking for a solution which would compare these products/titles and point which of them are the same.
For example I have these two, they are the same but with different titles:
$title2= "SENCOR SDV 7112 SUPER SLIM DIVX 5.1";
$title3= "DVD player SENCOR SDV 7112";
I've tried array_intersect() but this is not giving me the right results, it is jus approx solution.
Is there any method/algorithm for this?
Thank you!
For instance, you have 10 products in catalog from different stores (e-shops) which are the same but with little different names, as here:
$title2= "SENCOR SDV 7112 SUPER SLIM DIVX 5.1";
$title3= "DVD player SENCOR SDV 7112";
...and what I'm trying to do is pull out all the potential product which may be the same although they have slightly different names, and compare their prices.
I have some solution, which is giving me the % of similarity, but just wondering if there could be something more precise, any algorithm
Thank you!