本文整理汇总了PHP中CSS::Export方法的典型用法代码示例。如果您正苦于以下问题:PHP CSS::Export方法的具体用法?PHP CSS::Export怎么用?PHP CSS::Export使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CSS
的用法示例。
在下文中一共展示了CSS::Export方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: substr
$uuid .= substr($chars, 8, 4) . '-';
$uuid .= substr($chars, 12, 4) . '-';
$uuid .= substr($chars, 16, 4) . '-';
$uuid .= substr($chars, 20, 12);
return $prefix . $uuid;
}
if (preg_match('/^.*\\.?wetfish.net$/i', $URL['host'])) {
echo file_get_contents($_GET['url']);
return false;
$HTML = str_get_html(file_get_contents($_GET['url'] . "&load=true"));
$Unique = uuid('yay');
$CSS = new CSS();
$Data = array();
foreach ($HTML->find('style') as $Style) {
$CSS->Import($Style->innertext);
$Data = array_merge($Data, $CSS->Export('raw'));
$Style->outertext = '';
}
foreach ($HTML->find('link') as $Style) {
$CSS->Import(file_get_contents($URL['scheme'] . "://" . $URL['host'] . "/" . $Style->href));
$Data = array_merge($Data, $CSS->Export('raw'));
$Style->outertext = '';
}
foreach ($Data as $Tag => $Styles) {
if ($Styles['position'] == "relative") {
$Data['#' . $_GET['id']] = array('height' => $Styles['height'], 'width' => $Styles['width']);
}
switch ($Tag[0]) {
default:
foreach ($HTML->find($Tag) as $Derp) {
$Class = $Derp->class;