3v4l.org

run code in 300+ PHP versions simultaneously
<?php $your_google_calendar="https://www.google.com/calendar/htmlembed?src=cmh3hdnl7d4j8u29t3ekb67cg8%40group.calendar.google.com&amp;ctz=America/New_York"; $url= parse_url($your_google_calendar); $google_domain = $url['scheme'].'://'.$url['host'].dirname($url['path']).'/'; // Load and parse Google's raw calendar $dom = new DOMDocument; $dom->loadHTMLfile($your_google_calendar); // Change Google's CSS file to use absolute URLs (assumes there's only one element) $css = $dom->getElementsByTagName('link')->item(0); $css_href = $css->getAttributes('href'); $css->setAttributes('href', $google_domain . $css_href); // Change Google's JS file to use absolute URLs $scripts = $dom->getElementsByTagName('script')->item(0); foreach ($scripts as $script) { $js_src = $script->getAttributes('src'); if ($js_src) $script->setAttributes('src', $google_domain . $js_src); } // Create a link to a new CSS file called custom_calendar.css $element = $dom->createElement('link'); $element->setAttribute('type', 'text/css'); $element->setAttribute('rel', 'stylesheet'); $element->setAttribute('href', '/custom_calendar.css'); // Append this link at the end of the element $head = $dom->getElementsByTagName('head')->item(0); $head->appendChild($element); // Export the HTML echo $dom->saveHTML(); ?>

preferences:
39.66 ms | 402 KiB | 5 Q