<?php $t = microtime( true ); $password = 'my_password'; $options = [ 'cost' => 10, ]; $hash = password_hash($password, PASSWORD_BCRYPT, $options); var_dump($hash); var_dump( microtime(true) - $t );
You have javascript disabled. You will not be able to edit any code.