我在 php 中有以下 html 字符串
$html='<div style="display:block; float:left; width:40px;"> </div><a href="http://cosa.gr/index.php?cPath=15" class="headerNavigation">text</a>';
我需要在 a 元素中添加一个 'h1' html 元素,如果字符串文本采用编程方式。下面的代码显示了我需要的结果。
$html='<div style="display:block; float:left; width:40px;"> </div><a href="http://cosa.gr/index.php?cPath=15" class="headerNavigation"><h1>text</h1></a>';
有没有办法做到这一点?