Örneğin n değerleri olan bir dizi verilmiştir:
$arr[] = 'ABCDEFABC';
$arr[] = 'ABCDEFDEF';
$arr[] = 'ABCDEFGHI';
$arr[] = 'ABCDEFJKL';
nasıl bu durumda ABCDEF olarak, değerler (feryat örnekte, veya çoğu) tüm maçları ilk segmenti bulabilirim?
EDIT 2: NOT Çözüldü, cevaba bakınız.
Daha da kötüsü, şu diziyi Verilen:
$arr[] = 'ABCDEFABC';
$arr[] = 'ABCDEFDEF';
$arr[] = 'ABCDEFGHI';
$arr[] = 'ABCDEFJKL';
$arr[] = 'DEFABCABC';
$arr[] = 'DEFABCDEF';
$arr[] = 'DEFABCGHI';
$arr[] = 'DEFABCJKL';
nasıl alabilirim:
$result[] = 'ABCDEF';
$result[] = 'DEFABC';
Bu bir Ne Ben başarmak için çalışıyorum strspn () ("maske" sırası önemli değil, nerede size Zed teşekkür) diziler uygulamalı davranış ... zordur.
EDIT: To clarify things up a bit what I want is to find the all the common letters that exist in the same index in all the values of the array (not sure if this made it easier or not!). In this second problem, since all chars don't match the index in the other values I need to match the maximum number of identical initial segments (in this case 2: ABCDEF and DEFABC).