mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
19 lines
377 B
PHP
19 lines
377 B
PHP
<?php
|
|
|
|
namespace Rhymix\Modules\Admin\Models;
|
|
|
|
class Utility
|
|
{
|
|
/**
|
|
* Clean up header and footer scripts.
|
|
*
|
|
* @param string $content
|
|
* @return string
|
|
*/
|
|
public static function cleanHeaderAndFooterScripts(string $content)
|
|
{
|
|
$content = utf8_clean($content);
|
|
$content = preg_replace('!</?(html|head|body)[^>]*>!', '', $content);
|
|
return utf8_trim($content);
|
|
}
|
|
}
|