什么是用于抓取HTML及其CSS样式的纯PHP解决方案?
例如,抓取此页面
<!doctype html>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<div id="success" class="alert alert-success" role="alert" style="font-size:30px">Success</div>
其中id =成功将返回
<div style="color: rgb(60, 118, 61); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 30px; line-height: 42.8571434020996px; background-color: rgb(223, 240, 216);">Success</div>
好像我手动复制了该部分页面。
答案 0 :(得分:0)
如果我理解正确,您希望使用PHP为id“success”添加内联样式集。
您可以执行以下操作:
<?php
$inlineStyle = "color: rgb(60, 118, 61); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 30px; line-height: 42.8571434020996px; background-color: rgb(223, 240, 216);";
?>
并将其添加到HTML标记上:
<div id="success" .... style="<?= $inlineStyle ?>"></div>