Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有大词。
Paragraph 1 Paragraph 2 Paragraph 3 Paragraph 4 Paragraph 5
我必须为段落爆炸。示例:$paragraph[0] 必须是“第 1 段”
根据你的例子
$paragraph = explode(PHP_EOL . PHP_EOL, $text);
$paragraphs = explode("</p>", $the_original_text); echo $paragraphs[0]."</p>";