<?php
function extractJavaScript($string) {
preg_match_all('/<script\b[^>]*>(.*?)<\/script>/is', $string,$matches);
return $matches[1] ?? [];
}
$htmlContent = <<<HTML
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<script type="text/javascript">
function myFunction() {
document.getElementById("demo").innerHTML = "Hello JavaScript!";
}
</script>
<p id="demo">A Paragraph.</p>
</body>
</html>
HTML;
$javascriptCode = extractJavaScript($htmlContent);
print_r($javascriptCode);