<?php $options = array( 'cost' => 12, ); $password = '$$4ghi.%3'; $hash = password_hash($password, PASSWORD_DEFAULT); $hashnsalt = password_hash($password, PASSWORD_BCRYPT, $options); echo 'hash'.$hash; echo 'hashnsalt: '.$hashnsalt;
You have javascript disabled. You will not be able to edit any code.