3v4l.org

run code in 300+ PHP versions simultaneously
<?php $sql = "select ex.opening_minutes as opening, asset.assetID, ex.google_code as exch_google_code, asset.google_code as asset_google_code from selected_asset as sa". " inner join asset on asset.assetID = sa.assetID". " inner join asset_exchange ae on ae.assetID = sa.assetID". " inner join exchange as ex on ex.exchangeID = ae.exchangeID". " where ae.exchangeID = ".$exchangeID." and sa.brokerID = ".$brokerID; $extension = ""; if ($result = mysqli_query($this->db, $sql) ) { while ($rec = $result->fetch_assoc()){ $asset_google_code = $rec["asset_google_code"]; $exchange_google_code = $rec["exch_google_code"]; $assetentry = array ( $rec["assetID"] => $asset_google_code ); $this->assets[] = $assetentry; $extension .= trim($exchange_google_code) .":".$asset_google_code.","; } } //$extension = rtrim($extension, ","); $extension .= "'"; $sql = "select ex.opening_minutes as opening from exchange as ex where ex.exchangeID = ".$exchangeID; if ($result = mysqli_query($this->db, $sql) ) { while ($rec = $result->fetch_assoc()){ $this->opening_minutes = "+" . $rec["opening"]." minutes"; } } $this->closetime = $this->opening->modify ($this->opening_minutes); $this->closetime = $this->closetime->format( "Y-m-d H:i:s");
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $exchangeID in /in/hfgkv on line 7 Warning: Undefined variable $brokerID in /in/hfgkv on line 7 Fatal error: Uncaught Error: Call to undefined function mysqli_query() in /in/hfgkv:9 Stack trace: #0 {main} thrown in /in/hfgkv on line 9
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:
50.66 ms | 401 KiB | 8 Q