3v4l.org

run code in 300+ PHP versions simultaneously
<?php $password = 'hello'; $hashed = md5($password); var_dump('Hash to match: ' . $hashed); class HashCracker { private $range; private $length = 32; private $cycles = 1000; public function __construct() { $this->range = range('0', 'z'); } public function runBenchmark() { die(var_dump($this->range)); } } (new HashCracker())->runBenchmark();
Output for git.master, git.master_jit, rfc.property-hooks
string(47) "Hash to match: 5d41402abc4b2a76b9719d911017c592" array(1) { [0]=> int(0) }

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