芝麻web文件管理V1.00
编辑当前文件:/home/paymbalq/www/wp-content/plugins/woocommerce/packages/email-editor/src/email-css-inliner.php
inliner = CssInliner::fromHtml($unprocessed_html); return $that; } public function inline_css(string $css = ''): self { if (!isset($this->inliner)) { throw new \LogicException('You must call from_html before calling inline_css'); } $this->inliner->inlineCss($css); return $this; } public function render(): string { if (!isset($this->inliner)) { throw new \LogicException('You must call from_html before calling inline_css'); } return $this->inliner->render(); } }