3v4l.org

run code in 300+ PHP versions simultaneously
<?php $your_google_calendar="https://www.google.com/calendar/embed?showTitle=0&showPrint=0&showTabs=0&showCalendars=0&height=800&wkst=1&hl=pt_BR&bgcolor=%23FFFFFF&src=tprotegetreinamentos%40gmail.com&color=%23BE6D00&ctz=America%2FSao_Paulo"; $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 = $dom->getElementsByTagName('link'); foreach ($css as $link) { $css_href = $link->getAttribute('href'); if ($css_href) $$link->setAttribute('href', $google_domain . $css_href); } //$css_href = $css->getAttribute('href'); //$css->setAttribute('href', $google_domain . $css_href); // Change Google's JS file to use absolute URLs $scripts = $dom->getElementsByTagName('script'); foreach ($scripts as $script) { $js_src = $script->getAttribute('src'); if ($js_src) $script->setAttribute('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 //DOMNodeList $head = $dom->getElementsByTagName('head'); // $head = $dom->getElementsByTagName('head')->item(0); echo($head); $head->appendChild($element); // Export the HTML //echo $dom->saveHTML(); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: DOMDocument::loadHTMLFile(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/ESghh on line 7 Warning: DOMDocument::loadHTMLFile(): I/O warning : failed to load external entity "https://www.google.com/calendar/embed?showTitle=0&showPrint=0&showTabs=0&showCalendars=0&height=800&wkst=1&hl=pt_BR&bgcolor=%23FFFFFF&src=tprotegetreinamentos%40gmail.com&color=%23BE6D00&ctz=America%2FSao_Paulo" in /in/ESghh on line 7 Fatal error: Uncaught Error: Call to a member function appendChild() on null in /in/ESghh:34 Stack trace: #0 {main} thrown in /in/ESghh on line 34
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.08 ms | 401 KiB | 8 Q