3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = "<para>From the New York Times</para> <para>Instacart, a two-year-old grocery delivery company, announced a $44 million round of financing on Monday led by Andreessen Horowitz. Three venture capital firms that previously invested in the company, Sequoia Capital, Khosla Ventures and Canaan Partners, participated in the latest round.</para> <para>The company, which is based in San Francisco, lets customers shop online from grocery stores in their area. The orders are filled by other people who have signed up to be shoppers and who receive a cut of the delivery fees. Information about a store’s inventory comes from store managers and from the shoppers. The company says it can have groceries delivered within an hour.</para>"; $dom = new DOMDocument; $dom->preserveWhiteSpace = false; $dom->formatOutput = true; libxml_use_internal_errors(true); $dom->loadHTML($str, LIBXML_HTML_NODEFDTD | LIBXML_HTML_NOIMPLIED); $xpath = new DOMXPath($dom); $secondPara = $xpath->query('//para[2]'); $secondPara->item(0)->setAttribute('align', 'left'); echo $dom->saveHTML();
Output for git.master, git.master_jit, rfc.property-hooks
<para>From the New York Times<para>Instacart, a two-year-old grocery delivery company, announced a $44 million round of financing on Monday led by Andreessen Horowitz. Three venture capital firms that previously invested in the company, Sequoia Capital, Khosla Ventures and Canaan Partners, participated in the latest round.</para><para align="left">The company, which is based in San Francisco, lets customers shop online from grocery stores in their area. The orders are filled by other people who have signed up to be shoppers and who receive a cut of the delivery fees. Information about a store&acirc;&#128;&#153;s inventory comes from store managers and from the shoppers. The company says it can have groceries delivered within an hour.</para></para>

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:
50.07 ms | 403 KiB | 8 Q