正表形式を使用して文章部分を読むことに関する問題
$title = html_entity_decode($arrArticle['title']);
$subtitle = html_entity_decode($arrArticle['subtitle']) ;
$source = html_entity_decode($arrArticle['source']);
$author = html_entity_decode($arrArticle['author']);
$intro = html_entity_decode($arrArticle['intro'] );
$body = $arrArticle['content'];
$text = eregi_replace('', "
", $ body);
$text = eregi_replace("
]*>
", "", $text);
$text = eregi_replace("< p([^>]*)>
", "", $text);
$body =tripslashes(str_replace("
", "
", $text));
$body_arr =explode("", $body);
$body1 = $body2 = $body3 = '';
$total = count($body_arr);
$maxed = max(floor($total / 2), 3);
foreach ($body_arr as $k => $v) {
if ($k == 0) {
$body1 = $v . "";
} else if ($k $body2.=$v . "";
} else {
$body3.=$v . "";
}
}
この段代コードは正则表达式に基づいて適合
第1段
<ただし、実際にこのようなセグメントに分割された文書が存在する場合があります。 ;br>
第二段
第三段 怎样来写この二つの情况的代码呢
-----解解案案---------