3v4l.org

run code in 300+ PHP versions simultaneously
<?php function testing($val) { echo "Testing with: $val\n"; return true; } $conn = new SQLite3(':memory:'); $conn->exec("CREATE TABLE test (id int)"); for ($i = 0; $i < 3; $i++) { $conn->exec("INSERT INTO test VALUES ($i)"); } $conn->createFunction('testing', 'testing', 1); $res = $conn->query('SELECT * FROM test WHERE testing(id)'); $arr = $res->fetchArray(); $arr = $res->fetchArray(); $arr = $res->fetchArray();
Output for git.master, git.master_jit, rfc.property-hooks
Testing with: 0 Testing with: 0 Testing with: 1 Testing with: 2

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:
59.12 ms | 401 KiB | 8 Q