DB から抽出する必要があります。1 つの列のレコードが次のように結合されています: 最初の文字 (Firstname1)。Lastname1、最初の文字 (Firstname2)。姓 2、....
ここに私が解決しようとした方法の例があります...
$text2= "T. Toth, M. A. Carlo de Miller, T. Stallone";
$keywords = preg_split("/,/", "$text2");
print_r($keywords);
//I got a result in this way:
//Array ( [0] => T. Toth [1] => M. A. Carlo de Miller [2] => T. Stallone )
// I want a result of the form :
//Array ( [0] => T [1] => Toth [2] => M. A. [3] => Carlo de Miller [4] => T and so on....
MYSQL にある場合でも、誰かが続行方法のアイデアを得ることができます