Files
luos/thirdparty/html2ps_pdf/fetched_data._html.class.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

15 lines
405 B
PHP

<?php
class FetchedDataHTML extends FetchedData {
function detect_encoding() {
die("Unoverridden 'detect_encoding' called in ".get_class($this));
}
function _detect_encoding_using_meta() {
if (preg_match("#<\s*meta[^>]+content=(['\"])?text/html;\s*charset=([\w\d-]+)#is",$this->get_content(),$matches)) {
return strtolower($matches[2]);
} else {
return null;
};
}
}
?>