Php字符串处理

Kal*_*jid 1 php

我需要<p>在字符串中找到标签.然后我想存储来自(包括)的字符串

标记到另一个变量.

例如,我有字符串名称firstString;

firstString = "<div id='tab-1'><p>This is first string</p></div>"

我想要第二个字符串

secondString = "<p>This is first string</p>"

我只需要第一个<p>标签.

sha*_*ail 6

DOMDocument::loadHTML.也许不是最快的选择,但应该很简单.

$dom = new DOMDocument();
$dom->loadHTML($str);

$xp = new DOMXPath($dom);

$res = $xp->query('//p');

$firstParagraph = $res[0]->nodeValue;
Run Code Online (Sandbox Code Playgroud)