2024-02-04 10:21:56 +01:00
|
|
|
<?php
|
|
|
|
function inlineLocalStylesFromHref($inputString) {
|
|
|
|
// Define the regular expression pattern to match <link> tags with href attribute for CSS files
|
2024-02-04 10:24:52 +01:00
|
|
|
$pattern = '/<link.*?href=["\']\/(.*?)["\'].*?rel=["\']stylesheet["\'].*?>/i';
|
2024-02-04 10:21:56 +01:00
|
|
|
|
|
|
|
// Use preg_replace_callback to replace matched link tags with inline styles
|
2024-02-04 10:24:52 +01:00
|
|
|
$outputString = preg_replace_callback($pattern, function($match) {
|
2024-02-04 10:21:56 +01:00
|
|
|
// Extract the href attribute value
|
|
|
|
$href = $match[1];
|
|
|
|
|
|
|
|
// Get the content of the local CSS file
|
2024-02-04 10:24:52 +01:00
|
|
|
$cssContent = file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/' . $href);
|
2024-02-04 10:21:56 +01:00
|
|
|
|
|
|
|
// Create an inline style tag with the CSS content
|
|
|
|
return "<style>\n{$cssContent}\n</style>";
|
|
|
|
}, $inputString);
|
|
|
|
|
|
|
|
return $outputString;
|
|
|
|
}
|
|
|
|
|
|
|
|
function inlineScriptFromSrc($inputString) {
|
|
|
|
// Define the regular expression pattern to match <script> tags with src attribute
|
2024-02-04 10:24:52 +01:00
|
|
|
$pattern = '/<script.*?src=["\']\/(.*?)["\'].*?>\s*<\/script>/i';
|
2024-02-04 10:21:56 +01:00
|
|
|
|
|
|
|
// Use preg_replace_callback to replace matched script tags with inline script
|
2024-02-04 10:24:52 +01:00
|
|
|
$outputString = preg_replace_callback($pattern, function($match) {
|
2024-02-04 10:21:56 +01:00
|
|
|
// Extract the src attribute value
|
|
|
|
$src = $match[1];
|
|
|
|
|
|
|
|
// Get the content of the JavaScript file
|
2024-02-04 10:24:52 +01:00
|
|
|
$jsContent = file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/' . $src);
|
2024-02-04 10:21:56 +01:00
|
|
|
|
|
|
|
// Escape the JavaScript content for inline use
|
|
|
|
$escapedJsContent = htmlspecialchars($jsContent, ENT_QUOTES, 'UTF-8');
|
|
|
|
|
|
|
|
// Create an inline script with the escaped content
|
|
|
|
return "<script>\n{$escapedJsContent}\n</script>";
|
|
|
|
}, $inputString);
|
|
|
|
|
|
|
|
return $outputString;
|
|
|
|
}
|