<?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; ?>
You have javascript disabled. You will not be able to edit any code.