我有一串html代码。在这个 html 代码中,我有一个所谓的“html 分隔符”,它有助于将 html 代码拆分成更小的块。
分隔符的格式为
<br class="limit" />
html代码如下
<p>To be A Premier in Global Distinction<br class="limit" />To be A Premier Polytechnic of Global Distinction <br class="limit" />We provide quality education and training to prepare students and adult learners for work and life, equipping them to be life-long learners <br class="limit" />We will harness our resources, expertise, creativity and innovation to support the development of business and industry.</p>
这是我的php代码
$htmlparts = explode("<br class='limit' />", $htmlcode);
echo $htmlparts [0];
echo $htmlparts [1];
echo $htmlparts [2];
正确 $htmlparts [0] 应该返回我
要成为全球杰出的总理,$htmlparts[1] 应该让我成为全球杰出的总理理工学院等等。
通过它无法分裂。感谢任何专家的建议。谢谢!