We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d6aa33 commit c6eecb7Copy full SHA for c6eecb7
src/Document.php
@@ -34,7 +34,7 @@ public function __construct(Extractor $extractor)
34
} elseif (!empty($html)) {
35
preg_match('/charset="?(.*?)(?=$|\s|;|")/i', $html, $match);
36
if (!empty($match[1])) {
37
- $encoding = $match[1];
+ $encoding = trim($match[1], ',');
38
}
39
40
$this->document = !empty($html) ? Parser::parse($html, $encoding) : new DOMDocument();
0 commit comments