PHP查找动态内容和位置

时间:2020-06-19 08:09:53

标签: php css domparser

我有一项任务需要删除一些内容并将其放置在其他位置。内容是动态的。

样本数据:

<div style=\"margin-top: 20px\">
    <div>
        <div style=\"margin:20px 0;line-height:22px;\"><img src=\"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F104027520%2F296363021307%2F1%2Foriginal.20200619-065353?h=2000&amp;w=720&amp;auto=format%2Ccompress&amp;q=75&amp;sharp=10&amp;s=5994f828893a0604e47f4aa7a9e769b1\"/><\/div>
        <div style=\"margin:20px 10px;font-size:15px;line-height:22px;font-weight:400;text-align:left;\">
            <p>Speaker Name: Jeff Clanagan<\/p>
            <p>Position: President of Laugh Out Loud Network<\/p>
        <\/div>
        <div style=\"margin:20px 10px;font-size:15px;line-height:22px;font-weight:400;text-align:left;\">
            <p>Laugh Out Loud Network. A prolific producer and innovator in the entertainment industry, Jeff began his career as a concert impresario for artists such as NWA, Run DMC, LL Cool J, Chris Tucker, and the Isley Brothers. In 1998, Jeff moved into the film and television industry when he was named the President of No Limit Films, rapper Master P's film and video company. During his tenure, Jeff cultivated the startup into a $40 million multi-media company. 
            \n
            <\/p>
            <p>Jeff continued in television, creating and executive producing the syndicated magazine television show Livin' Large in 2002, which was hosted by Carmen Electra and was syndicated nationally through Carsey-Warner distribution. Jeff launched Codeblack Films in 2008. Jeff produced and distributed Kevin Hart's concert movie, Kevin Hart: Let Me Explain which went on to gross $32 Million dollars at the box office. Codeblack recently distributed the Tupac \"All Eyez On My\" biopic which has grossed over $40 Million dollars domestically. <\/p>
        <\/div>
        <div style=\"margin:20px 0;line-height:22px;\">
            <img src=\"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F104027548%2F296363021307%2F1%2Foriginal.20200619-065457?h=2000&amp;w=720&amp;auto=format%2Ccompress&amp;q=75&amp;sharp=10&amp;s=2b6e37c554ff54351855d5d4a9a3a544\"/>
        <\/div>
        <div style=\"margin:20px 10px;font-size:15px;line-height:22px;font-weight:400;text-align:left;\">
            <p>Speaker Name: Howard Baskin<\/p>
            <p>Position:  Advisory Board Chairman, Treasurer, and Secretary for Big Cat Rescue<\/p>
        <\/div>
        <div style=\"margin:20px 10px;font-size:15px;line-height:22px;font-weight:400;text-align:left;\">
            <p>Howard Baskin is the Advisory Board Chairman, Treasurer, and Secretary for Big Cat Rescue. He was recently featured in the Netflix hit docuseries Tiger King, which had 34.3M unique viewers in its first 10 days.<\/p>
            <p><\/p>
            <p>Howard is a retired management consultant who worked with early-stage and fast-growing companies in the areas of strategic planning, finance, and operations. He spent 11 years at Citicorp in various assignments, most recently as Director of Strategic Planning for the Commercial Real Estate Division. After leaving Citicorp in 1991 he was an equity participant and general manager in three companies, one of which he co-founded.<\/p><p><\/p><p>He now devotes full time to Big Cat Rescue as Advisory Board Chairman, Treasurer, and Secretary and serves on the Audit Committee.<\/p>
        <\/div>
    <\/div>
<\/div>

要显示文本,我需要删除图像以及扬声器的名称和位置内容,并用分隔符或其他内容替换。在另一部分中,我将仅显示图像及其相应的扬声器名称和位置。

当前,我能够使用$html->find('img')提取图像并将其完全从文本中删除。

棘手的部分是获取扬声器的名称和位置并将其附加在图像下方。演讲者的姓名和位置始终位于图像之后。

我们非常感谢您的帮助!

0 个答案:

没有答案