3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<'XML' <root> <main> <article> <p> The stunning increase in homelessness announced in Los Angeles this week — up 16% over last year citywide — was an almost an incomprehensible conundrum given the nation's booming economy and the hundreds of millions of dollars that city, county and state officials have directed toward the problem. </p> <p> "We cannot let a set of difficult numbers discourage us or weaken our resolve" Garcetti said. </p> <p> For more information: Maeve Reston, CNN </p> </article> </main> </root> XML; $document = new DOMDocument(); $document->loadXML($xml); $xpath = new DOMXpath($document); $expression = "//p[starts-with(normalize-space(), 'Reference')]/preceding-sibling::p | //p[starts-with(normalize-space(), 'For more')]/preceding-sibling::p | //p[starts-with(normalize-space(), 'Something')]/preceding-sibling::p"; foreach ($xpath->evaluate($expression) as $node) { echo $document->saveXML($node); } $expression = "//p[ starts-with(normalize-space(), 'Reference') or starts-with(normalize-space(), 'For more') or starts-with(normalize-space(), 'Something') ]/preceding-sibling::p"; foreach ($xpath->evaluate($expression) as $node) { echo $document->saveXML($node); }
Output for git.master, git.master_jit, rfc.property-hooks
<p> The stunning increase in homelessness announced in Los Angeles this week — up 16% over last year citywide — was an almost an incomprehensible conundrum given the nation's booming economy and the hundreds of millions of dollars that city, county and state officials have directed toward the problem. </p><p> "We cannot let a set of difficult numbers discourage us or weaken our resolve" Garcetti said. </p><p> The stunning increase in homelessness announced in Los Angeles this week — up 16% over last year citywide — was an almost an incomprehensible conundrum given the nation's booming economy and the hundreds of millions of dollars that city, county and state officials have directed toward the problem. </p><p> "We cannot let a set of difficult numbers discourage us or weaken our resolve" Garcetti said. </p>

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:
178.82 ms | 409 KiB | 5 Q