如何刮html + css

时间:2015-04-07 03:57:38

标签: php html css

什么是用于抓取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>

好像我手动复制了该部分页面。

1 个答案:

答案 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>