Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- * @param string $document
- * @param string $charset
- *
- * @return string
- */
- public static function fixContentTypeMeta($document, $charset = 'utf-8')
- {
- return Strings::replace($document, // hack for DOMDocument
- '~<meta([^>]+http-equiv\\s*=\\s*)["\']*Content-Type["\']*([^>]+content\\s*=\\s*["\'][^;]+;)[\t ]*charset=[^"\']+(["\'][^>]*)>~i',
- '<meta\\1"Content-Type"\\2 charset=' . $charset . '\\3>'
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment