3v4l.org

run code in 300+ PHP versions simultaneously
<?php $lookup = [ '0' => [ 'column1' => 'value1', 'column2' => 'value2', ], '1' => [ 'column1' => 'value1', 'column2' => 'value2', ] ]; // First check the cache if the items exist there $cacheResult = getFromCache($lookup); // If cache result does not match lookup, check the database $databaseResult = getFromDatabase($someDifferenceWhichNeedsToCheckedFor); // if Database lookup gave back what's missed from the Cache addToCache($databaseResult); // and merge both results // If databaseResult does not give what was missing from cache check the external "provider" $providerResult = getFromProvider($someDifferenceWhichNeedsToCheckedFor); // if Provider lookup gave back what's missed from the Cache $queryResponse = addToDatabase($databaseResult); if($queryResponse) { addToCache($queryResponse); } //Return result
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function getFromCache() in /in/GG3Oq:17 Stack trace: #0 {main} thrown in /in/GG3Oq on line 17
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.69 ms | 401 KiB | 8 Q