いくつかの文があります。6語以上からなる文章を選ばなければなりません。そしてそれらはデータベースに挿入されます。
<?php
require_once 'conf/conf.php';
$text = " Poetry. Do you read poetry while flying? Many people find it relaxing to read on long flights. Poetry can be divided into several genres, or categories. ";
$sentences = explode(".", $text);
foreach ($sentences as $sentence) {
if (count(preg_split('/\s+/', $sentence)) > 6) {
$save = $sentence. ".";
$sql = mysql_query("INSERT INTO tb_name VALUES('','$save')");
}
}
?>
結果は、データベースに挿入された 2 番目の文のみです => 「飛行中に詩を読みますか?」多くの人は、長時間のフライトで読書をするのがリラックスできると感じています。」一方、3 番目の文も挿入する必要があります。私を助けてください、ありがとう:)