これは preg_match_all からの私の現在の出力です
Array
(
[0] => Array
(
[0] => 2 Sentence text here
)
)
Array
(
[0] => Array
(
[0] => 3 Sentence text here.
[1] => 4 Sentence text here.
[2] => 5 Sentence text here.
)
)
各出力をテーブルの新しい行として挿入しようとしていますが、各 [0] [1] [2] が新しい列であると考えています。配列をmysqlに挿入するにはどうすればよいですか?
$query = "INSERT INTO table (col1) VALUES ";
foreach ($matches as $item) {
$query .= "('".$item[0]."'),";
}
$query = rtrim($query,",");
$result = mysql_query($query);
上記は明らかに配列の最初の行のみを挿入します