3v4l.org

run code in 500+ PHP versions simultaneously
<?php // Text to hash $text = "Get#123"; // Generate bcrypt hash $hash = password_hash($text, PASSWORD_BCRYPT); // Output result echo "Original Text: " . $text . PHP_EOL; echo "Bcrypt Hash: " . $hash . PHP_EOL; ?> <?php // Text to hash $text = "Get#123"; // Generate bcrypt hash $hash = password_hash($text, PASSWORD_BCRYPT); // Output result echo "Original Text: " . $text . PHP_EOL; echo "Bcrypt Hash: " . $hash . PHP_EOL; ?>
Output for git.master
Original Text: Get#123 Bcrypt Hash: $2y$12$9W.SsuDv3WZBJPj7tYu5xuZSzGxJJWEabPAVvyTM84d8IV.b5oKsG Original Text: Get#123 Bcrypt Hash: $2y$12$Fta4qdB5cN6BoFacbkDHvuzLYM0C.RNA9DV3g7A/8UEEMpayff3im
Output for git.master_jit
Original Text: Get#123 Bcrypt Hash: $2y$12$hnTZ67EE5BYm7NyeC2egGexjiJhIDNnvdoR7YIIYBB67C.3BVKGeq Original Text: Get#123 Bcrypt Hash: $2y$12$nlLz3RUUIb0nki.eaJpFAe.R/368T7sPePoUAYyC1DDn1afqefY0y

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:
52.29 ms | 712 KiB | 4 Q